We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12e4957 commit 0c575dbCopy full SHA for 0c575db
gz-waves/src/CGAL_TEST.cc
@@ -193,10 +193,10 @@ TEST(CGAL, SurfaceMesh) {
193
if (intersection) {
194
// gets intersection object
195
#if CGAL_VERSION_MAJOR >= 6
196
- if (std::get_if<Point3>(&(intersection->first))) {
+ if (std::get_if<Point3>(&(intersection->first))) {
197
// Point3* p = std::get_if<Point3>(&(intersection->first));
198
#else
199
- if (boost::get<Point3>(&(intersection->first))) {
+ if (boost::get<Point3>(&(intersection->first))) {
200
// Point3* p = boost::get<Point3>(&(intersection->first));
201
#endif
202
// std::cout << "intersection object is a point " << *p << "\n";
0 commit comments