From 415c23ac5d4bdc0aa60dc098ad3d5e43367ad343 Mon Sep 17 00:00:00 2001 From: Mark Meredith Date: Wed, 15 Jul 2020 15:58:31 -0400 Subject: [PATCH] Pragma to suppress warnings --- src/csg_cgal_helper.hpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/csg_cgal_helper.hpp b/src/csg_cgal_helper.hpp index 3eb6463..2a23e17 100644 --- a/src/csg_cgal_helper.hpp +++ b/src/csg_cgal_helper.hpp @@ -1,10 +1,15 @@ #ifndef CGAL_HELPER_H_ #define CGAL_HELPER_H_ +#pragma GCC diagnostic ignored "-Wpedantic" +#pragma warning (disable : 4083 ) +#pragma warning (disable : 4244 ) #include #include #include #include +#pragma GCC diagnostic pop +#pragma warning default namespace cgal_helper { -- GitLab