Fix a typo. Compilers were confused because set_precision and get_precision

identifiers were resolved as global undefined functions.
This commit is contained in:
Laurent Rineau 2010-11-25 10:11:36 +00:00
parent 94f578b39b
commit 57717baf1f
1 changed files with 2 additions and 2 deletions

View File

@ -49,8 +49,8 @@ void test_bigfloat_interval_traits() {
BOOST_STATIC_ASSERT(( ::boost::is_same< Is_bigfloat_interval, CGAL::Tag_true>::value));
const typename BFIT::Construct construct = typename BFIT::Construct();
const typename BFIT::Set_precision set_precsion = typename BFIT::Set_precision();
const typename BFIT::Get_precision get_precsion = typename BFIT::Get_precision();
const typename BFIT::Set_precision set_precision = typename BFIT::Set_precision();
const typename BFIT::Get_precision get_precision = typename BFIT::Get_precision();
const typename BFIT::Relative_precision relative_precision
= typename BFIT::Relative_precision();