diff --git a/unittests/boxed_cast_test.cpp b/unittests/boxed_cast_test.cpp index 4a32846..c3c8931 100644 --- a/unittests/boxed_cast_test.cpp +++ b/unittests/boxed_cast_test.cpp @@ -57,8 +57,8 @@ template bool do_test(const Boxed_Value &bv, bool T, bool ConstT, bool TRef, bool ConstTRef, bool TPtr, bool ConstTPtr, bool TPtrConst, bool ConstTPtrConst, bool SharedPtrT, bool SharedConstPtrT, bool ConstSharedPtrT, bool ConstSharedConstPtrT, bool ConstSharedPtrTRef, bool ConstSharedPtrTConstRef, - bool BoostRef, bool BoostConstRef, bool ConstBoostRef, bool ConstBoostConstRef, - bool ConstBoostRefRef, bool ConstBoostConstRefRef, bool Number, + bool WrappedRef, bool WrappedConstRef, bool ConstWrappedRef, bool ConstWrappedConstRef, + bool ConstWrappedRefRef, bool ConstWrappedConstRefRef, bool Number, bool ConstNumber, bool ConstNumberRef, bool TPtrConstRef, bool ConstTPtrConstRef) { bool passed = true; @@ -78,14 +78,14 @@ bool do_test(const Boxed_Value &bv, bool T, bool ConstT, bool TRef, bool ConstTR passed &= test_type_conversion >(bv, ConstSharedConstPtrT); passed &= test_type_conversion &>(bv, ConstSharedPtrTRef); passed &= test_type_conversion &>(bv, ConstSharedPtrTConstRef); - passed &= test_type_conversion >(bv, BoostRef); - passed &= test_type_conversion >(bv, BoostConstRef); + passed &= test_type_conversion >(bv, WrappedRef); + passed &= test_type_conversion >(bv, WrappedConstRef); passed &= test_type_conversion &>(bv, false); passed &= test_type_conversion &>(bv, false); - passed &= test_type_conversion >(bv, ConstBoostRef); - passed &= test_type_conversion >(bv, ConstBoostConstRef); - passed &= test_type_conversion &>(bv, ConstBoostRefRef); - passed &= test_type_conversion &>(bv, ConstBoostConstRefRef); + passed &= test_type_conversion >(bv, ConstWrappedRef); + passed &= test_type_conversion >(bv, ConstWrappedConstRef); + passed &= test_type_conversion &>(bv, ConstWrappedRefRef); + passed &= test_type_conversion &>(bv, ConstWrappedConstRefRef); passed &= test_type_conversion(bv, Number); passed &= test_type_conversion(bv, ConstNumber); passed &= test_type_conversion(bv, false); @@ -293,8 +293,8 @@ int main() /* bool T, bool ConstT, bool TRef, bool ConstTRef, bool TPtr, bool ConstTPtr, bool TPtrConst, bool ConstTPtrConst, bool SharedPtrT, bool SharedConstPtrT, - bool ConstSharedPtrT, bool ConstSharedConstPtrT, bool ConstSharedPtrTRef, bool ConstSharedPtrTConstRef, bool BoostRef, - bool BoostConstRef, bool ConstBoostRef, bool ConstBoostConstRef, bool ConstBoostRefRef, bool ConstBoostConstRefRef, + bool ConstSharedPtrT, bool ConstSharedConstPtrT, bool ConstSharedPtrTRef, bool ConstSharedPtrTConstRef, bool WrappedRef, + bool WrappedConstRef, bool ConstWrappedRef, bool ConstWrappedConstRef, bool ConstWrappedRefRef, bool ConstWrappedConstRefRef, bool Number, bool ConstNumber, bool ConstNumberRef */