stdcpp/tsrc/Boost_test/math/test/src/common_factor_test.cpp
changeset 22 ddc455616bd6
parent 0 e4d67989cc36
child 45 4b03adbd26ca
child 57 2efc27d87e1c
--- a/stdcpp/tsrc/Boost_test/math/test/src/common_factor_test.cpp	Fri Apr 16 16:46:38 2010 +0300
+++ b/stdcpp/tsrc/Boost_test/math/test/src/common_factor_test.cpp	Mon May 03 14:06:43 2010 +0300
@@ -57,6 +57,9 @@
     // Lifetime management (use automatic destructor and copy constructor)
     my_wrapped_integer( int_type const &v = int_type() )  : v_( v )  {}
 
+#ifdef __ARMCC__
+#pragma diag_suppress 177
+#endif
     // Accessors
     int_type  value() const  { return this->v_; }
 
@@ -85,6 +88,7 @@
     self_type &operator |=(self_type const &r) {this->v_ |= r.v_; return *this;}
     self_type &operator ^=(self_type const &r) {this->v_ ^= r.v_; return *this;}
 
+
     // Input & output
     friend std::istream & operator >>( std::istream &i, self_type &x )
     { return i >> x.v_; }