revert unintended change

This commit is contained in:
Jane Tournois 2022-10-25 12:53:39 +02:00
parent e99f442830
commit 0ee5493f02
1 changed files with 3 additions and 1 deletions

View File

@ -219,9 +219,11 @@ public:
added. If `false` (default value), the normal map can still be
added later on (see `add_normal_map()`).
*/
Point_set_3 () : m_base()
Point_set_3 (bool with_normal_map = false) : m_base()
{
clear();
if (with_normal_map)
add_normal_map();
}
/*!