diff --git a/call_traits_test.cpp b/call_traits_test.cpp index 762d8b8..3e5a1ed 100644 --- a/call_traits_test.cpp +++ b/call_traits_test.cpp @@ -117,13 +117,14 @@ void call_traits_checker::operator()(param_type p) assert(t == c.value()); assert(t == c.get()); assert(t == c.const_get()); - +#ifndef __ICL //cout << "typeof contained<" << typeid(T).name() << ">::v_ is: " << typeid(&contained::v_).name() << endl; cout << "typeof contained<" << typeid(T).name() << ">::value() is: " << typeid(&contained::value).name() << endl; cout << "typeof contained<" << typeid(T).name() << ">::get() is: " << typeid(&contained::get).name() << endl; cout << "typeof contained<" << typeid(T).name() << ">::const_get() is: " << typeid(&contained::const_get).name() << endl; cout << "typeof contained<" << typeid(T).name() << ">::call() is: " << typeid(&contained::call).name() << endl; cout << endl; +#endif } #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION @@ -373,3 +374,4 @@ unsigned int expected_failures = 0; #endif +