mirror of https://github.com/CGAL/cgal
push warning in Partition_2
This commit is contained in:
parent
02de401b7d
commit
6d25c01c5c
|
|
@ -21,6 +21,12 @@
|
||||||
#ifndef CGAL_PARTITION_APPROX_CONVEX_H
|
#ifndef CGAL_PARTITION_APPROX_CONVEX_H
|
||||||
#define CGAL_PARTITION_APPROX_CONVEX_H
|
#define CGAL_PARTITION_APPROX_CONVEX_H
|
||||||
|
|
||||||
|
#include <boost/config.hpp>
|
||||||
|
#if (BOOST_GCC >= 40800)
|
||||||
|
_Pragma("GCC diagnostic push")
|
||||||
|
_Pragma("GCC diagnostic ignored \"-Wmaybe-uninitialized\"")
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <CGAL/Constrained_triangulation_2.h>
|
#include <CGAL/Constrained_triangulation_2.h>
|
||||||
#include <CGAL/Partition_2/Triangulation_indirect_traits_2.h>
|
#include <CGAL/Partition_2/Triangulation_indirect_traits_2.h>
|
||||||
#include <CGAL/Partition_2/Turn_reverser.h>
|
#include <CGAL/Partition_2/Turn_reverser.h>
|
||||||
|
|
@ -271,5 +277,7 @@ OutputIterator partition_approx_convex_2(InputIterator first,
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#if (BOOST_GCC >= 40800)
|
||||||
|
_Pragma("GCC diagnostic pop")
|
||||||
|
#endif
|
||||||
#endif // CGAL_PARTITION_APPROX_CONVEX_H
|
#endif // CGAL_PARTITION_APPROX_CONVEX_H
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue