cgal/STL_Extension/test/STL_Extension/test_namespaces.cpp

38 lines
925 B
C++

#include <CGAL/Installation/internal/disable_deprecation_warnings_and_errors.h> // because CGAL::copy_n is deprecated
#include <boost/config.hpp>
#if defined(BOOST_MSVC)
// avoid: warning C4996: 'CGAL::copy_n': was declared deprecated
# pragma warning(disable:4996)
#endif
#include <CGAL/array.h>
#include <CGAL/tuple.h>
#include <CGAL/algorithm.h>
#include <CGAL/use.h>
int main()
{
CGAL::cpp0x::array<int, 3> arr{1, 2, 3};
std::array<int, 3> arr2;
CGAL::cpp0x::tuple<double, int> tuple;
std::tuple<double, int> tuple2;
CGAL_USE(tuple);
CGAL_USE(tuple2);
CGAL::copy_n(arr.begin(), 3, arr2.begin());
CGAL::cpp0x::copy_n(arr.begin(), 3, arr2.begin());
std::copy_n(arr.begin(), 3, arr2.begin());
CGAL::cpp0x::array<int, 3>::iterator it = CGAL::cpp0x::prev(arr.end());
it = std::prev(arr.end());
it = CGAL::cpp0x::next(arr.begin());
it = std::next(arr.begin());
CGAL_USE(it);
return 0;
}