From c6e5aa5cbc2ea00d5e70abe7c4402525b3a5d611 Mon Sep 17 00:00:00 2001 From: Andreas Fabri Date: Thu, 18 Nov 2010 09:13:55 +0000 Subject: [PATCH] Use unused variables --- .../include/CGAL/Test/_test_bigfloat_interval_traits.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Interval_support/include/CGAL/Test/_test_bigfloat_interval_traits.h b/Interval_support/include/CGAL/Test/_test_bigfloat_interval_traits.h index 9bc061b0520..08927d61787 100644 --- a/Interval_support/include/CGAL/Test/_test_bigfloat_interval_traits.h +++ b/Interval_support/include/CGAL/Test/_test_bigfloat_interval_traits.h @@ -21,6 +21,7 @@ // \brief provides test functions for the \c Bigfloat_Interval concept. #include +#include #include #include @@ -53,6 +54,11 @@ void test_bigfloat_interval_traits() { const typename BFIT::Relative_precision relative_precision = typename BFIT::Relative_precision(); + CGAL_USE(construct); + CGAL_USE(set_precision); + CGAL_USE(get_precision); + CGAL_USE(relative_precision); + CGAL::set_precision(BFI(),15); assert(CGAL::get_precision(BFI()) == 15); assert(CGAL::set_precision(BFI(),23) == 15);