Skip to content

Commit 0c575db

Browse files
committed
CGAL: support version 6.0
- Fix line indent. Signed-off-by: Rhys Mainwaring <[email protected]>
1 parent 12e4957 commit 0c575db

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gz-waves/src/CGAL_TEST.cc

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,10 +193,10 @@ TEST(CGAL, SurfaceMesh) {
193193
if (intersection) {
194194
// gets intersection object
195195
#if CGAL_VERSION_MAJOR >= 6
196-
if (std::get_if<Point3>(&(intersection->first))) {
196+
if (std::get_if<Point3>(&(intersection->first))) {
197197
// Point3* p = std::get_if<Point3>(&(intersection->first));
198198
#else
199-
if (boost::get<Point3>(&(intersection->first))) {
199+
if (boost::get<Point3>(&(intersection->first))) {
200200
// Point3* p = boost::get<Point3>(&(intersection->first));
201201
#endif
202202
// std::cout << "intersection object is a point " << *p << "\n";

0 commit comments

Comments
 (0)