mirror of https://github.com/CGAL/cgal
Add missing #include <cassert>
This commit is contained in:
parent
f58aa32242
commit
008ccc5b48
|
|
@ -1,6 +1,7 @@
|
|||
#include <CGAL/Combination_enumerator.h>
|
||||
#include <iostream>
|
||||
#include <vector>
|
||||
#include <cassert>
|
||||
|
||||
|
||||
using namespace std;
|
||||
|
|
|
|||
|
|
@ -18,6 +18,8 @@ int main()
|
|||
|
||||
#include <CGAL/IO/Geomview_stream.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
typedef CGAL::Cartesian<double> K;
|
||||
|
||||
void test_parse_point()
|
||||
|
|
|
|||
|
|
@ -32,6 +32,7 @@
|
|||
#include <CGAL/Polyhedron_items_3.h>
|
||||
#include <CGAL/HalfedgeDS_decorator.h>
|
||||
#include <cstddef>
|
||||
#include <cassert>
|
||||
|
||||
typedef CGAL::Cartesian<double> Kernel;
|
||||
struct Dummy_traits_3 {
|
||||
|
|
|
|||
|
|
@ -31,6 +31,8 @@
|
|||
#include <CGAL/Polyhedron_items_3.h>
|
||||
#include <CGAL/HalfedgeDS_decorator.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
typedef CGAL::Cartesian<double> Kernel;
|
||||
struct Dummy_traits_2 {
|
||||
typedef Kernel::Point_2 Point_2;
|
||||
|
|
|
|||
|
|
@ -28,6 +28,8 @@
|
|||
#include <CGAL/basic.h>
|
||||
#include <CGAL/Modifier_base.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
using CGAL::Modifier_base;
|
||||
|
||||
class A {
|
||||
|
|
|
|||
|
|
@ -38,6 +38,8 @@
|
|||
#include <CGAL/function_objects.h>
|
||||
#include <CGAL/halfedgeds_connected_components.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
// A polyhedron modifier that creates a tetrahedron using the
|
||||
// incremental builder.
|
||||
template < class HDS >
|
||||
|
|
|
|||
|
|
@ -44,6 +44,7 @@
|
|||
#include <fstream>
|
||||
#include <sstream>
|
||||
#include <cstring>
|
||||
#include <cassert>
|
||||
|
||||
using namespace CGAL;
|
||||
|
||||
|
|
|
|||
|
|
@ -3,6 +3,8 @@
|
|||
#include <CGAL/Real_timer.h>
|
||||
#include <CGAL/FPU.h>
|
||||
|
||||
#include <cassert>
|
||||
|
||||
template <class T>
|
||||
double test_timer() {
|
||||
T t;
|
||||
|
|
|
|||
|
|
@ -30,6 +30,7 @@
|
|||
|
||||
#include <CGAL/basic.h>
|
||||
#include <cstddef>
|
||||
#include <cassert>
|
||||
#include <iterator>
|
||||
#include <list>
|
||||
#include <vector>
|
||||
|
|
|
|||
|
|
@ -3,6 +3,7 @@
|
|||
#include <functional>
|
||||
#include <algorithm>
|
||||
#include <numeric>
|
||||
#include <cassert>
|
||||
|
||||
using CGAL::compose1_1;
|
||||
using CGAL::compose1_2;
|
||||
|
|
|
|||
|
|
@ -33,6 +33,7 @@
|
|||
#include <iostream>
|
||||
#include <cstdlib>
|
||||
#include <cstring>
|
||||
#include <cassert>
|
||||
|
||||
void test_massive_insert_and_erase();
|
||||
void test_iterators();
|
||||
|
|
|
|||
|
|
@ -24,6 +24,7 @@
|
|||
|
||||
#include <CGAL/Cartesian.h>
|
||||
#include <cstddef>
|
||||
#include <cassert>
|
||||
#include <sstream>
|
||||
#include <CGAL/IO/Ostream_iterator.h>
|
||||
#include <CGAL/IO/Istream_iterator.h>
|
||||
|
|
|
|||
|
|
@ -27,6 +27,7 @@
|
|||
|
||||
#include <iostream>
|
||||
#include <fstream>
|
||||
#include <cassert>
|
||||
|
||||
#include <CGAL/Cartesian.h>
|
||||
#include <CGAL/Polyhedron_3.h>
|
||||
|
|
|
|||
Loading…
Reference in New Issue