diff -r 47c74d1534e1 -r ddc455616bd6 stdcpp/tsrc/Boost_test/smart_ptr/src/pointer_to_other_test.cpp --- a/stdcpp/tsrc/Boost_test/smart_ptr/src/pointer_to_other_test.cpp Fri Apr 16 16:46:38 2010 +0300 +++ b/stdcpp/tsrc/Boost_test/smart_ptr/src/pointer_to_other_test.cpp Mon May 03 14:06:43 2010 +0300 @@ -39,6 +39,9 @@ std_log(LOG_FILENAME_LINE,"[Test Case for pointer_to_other_test]"); // shared_ptr + #ifdef __ARMCC__ + #pragma diag_suppress 550 + #endif assert_same_type< boost::pointer_to_other< boost::shared_ptr, Y >::type, boost::shared_ptr >(); assert_same_type< boost::pointer_to_other< boost::shared_ptr, void >::type, boost::shared_ptr >(); assert_same_type< boost::pointer_to_other< boost::shared_ptr, Y >::type, boost::shared_ptr >(); @@ -79,6 +82,7 @@ assert_same_type< boost::pointer_to_other< X *, void >::type, void * >(); assert_same_type< boost::pointer_to_other< void *, Y >::type, Y * >(); + #ifdef __SYMBIAN32__ std_log(LOG_FILENAME_LINE,"Result : Passed");