stdcpp/tsrc/Boost_test/smart_ptr/src/pointer_to_other_test.cpp
changeset 22 ddc455616bd6
parent 0 e4d67989cc36
child 45 4b03adbd26ca
child 57 2efc27d87e1c
--- 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<X>, Y >::type, boost::shared_ptr<Y> >();
     assert_same_type< boost::pointer_to_other< boost::shared_ptr<X>, void >::type, boost::shared_ptr<void> >();
     assert_same_type< boost::pointer_to_other< boost::shared_ptr<void>, Y >::type, boost::shared_ptr<Y> >();
@@ -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");