Rename Boxed_POD_Value to Boxed_Numeric, which is more correct.
This commit is contained in:

committed by
Jason Turner

parent
18d4984258
commit
226666c2bb
@@ -86,14 +86,14 @@ bool do_test(const Boxed_Value &bv, bool T, bool ConstT, bool TRef, bool ConstTR
|
||||
passed &= test_type_conversion<const boost::reference_wrapper<const Type> >(bv, ConstBoostConstRef);
|
||||
passed &= test_type_conversion<const boost::reference_wrapper<Type> &>(bv, ConstBoostRefRef);
|
||||
passed &= test_type_conversion<const boost::reference_wrapper<const Type> &>(bv, ConstBoostConstRefRef);
|
||||
passed &= test_type_conversion<Boxed_POD_Value>(bv, PODValue);
|
||||
passed &= test_type_conversion<const Boxed_POD_Value>(bv, ConstPODValue);
|
||||
passed &= test_type_conversion<Boxed_POD_Value &>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_POD_Value &>(bv, ConstPODValueRef);
|
||||
passed &= test_type_conversion<Boxed_POD_Value *>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_POD_Value *>(bv, false);
|
||||
passed &= test_type_conversion<Boxed_POD_Value * const>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_POD_Value *const>(bv, false);
|
||||
passed &= test_type_conversion<Boxed_Numeric>(bv, PODValue);
|
||||
passed &= test_type_conversion<const Boxed_Numeric>(bv, ConstPODValue);
|
||||
passed &= test_type_conversion<Boxed_Numeric &>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_Numeric &>(bv, ConstPODValueRef);
|
||||
passed &= test_type_conversion<Boxed_Numeric *>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_Numeric *>(bv, false);
|
||||
passed &= test_type_conversion<Boxed_Numeric * const>(bv, false);
|
||||
passed &= test_type_conversion<const Boxed_Numeric *const>(bv, false);
|
||||
passed &= test_type_conversion<Type *&>(bv, false);
|
||||
passed &= test_type_conversion<const Type *&>(bv, false);
|
||||
passed &= test_type_conversion<Type * const&>(bv, TPtrConstRef);
|
||||
|
Reference in New Issue
Block a user