Fix uninitialized member in Triangulation_3.h

This commit is contained in:
Giles Bathgate 2020-11-18 07:43:12 +00:00
parent a60a9e638d
commit b95de74a7a
1 changed files with 2 additions and 1 deletions

View File

@ -447,7 +447,8 @@ private:
const Self *t;
public:
Infinite_tester() {}
Infinite_tester()
: t(nullptr) {}
Infinite_tester(const Self *tr)
: t(tr) {}