Use CGAL_USE()

This commit is contained in:
Andreas Fabri 2018-03-30 13:32:39 +01:00
parent 4a410cd3ec
commit be20f518e7
1 changed files with 5 additions and 0 deletions

View File

@ -8,6 +8,7 @@
#include <CGAL/array.h>
#include <CGAL/tuple.h>
#include <CGAL/algorithm.h>
#include <CGAL/use.h>
int main()
{
@ -17,9 +18,13 @@ int main()
CGAL::cpp0x::tuple<double, int> tuple;
CGAL::cpp11::tuple<double, int> tuple2;
CGAL_USE(tuple);
CGAL_USE(tuple2);
#ifndef CGAL_NO_DEPRECATED_CODE
CGAL::copy_n(arr.begin(), 3, arr2.begin());
#endif // not CGAL_NO_DEPRECATED_CODE
CGAL::cpp0x::copy_n(arr.begin(), 3, arr2.begin());
CGAL::cpp11::copy_n(arr.begin(), 3, arr2.begin());