]> SALOME platform Git repositories - modules/yacs.git/blobdiff - src/yacsloader/Test/echoSrv.cxx
Salome HOME
Remove c++11 warnings about throw specification.
[modules/yacs.git] / src / yacsloader / Test / echoSrv.cxx
index ca4f61724bc61e06b2a7f9533f73197d1c68749c..708578b931270ca998458a46ed4ad602c367585c 100644 (file)
@@ -95,7 +95,7 @@ public:
   virtual ~Echo_i() {}
   virtual char* echoString(const char* mesg);
   virtual CORBA::Boolean echoBoolean(CORBA::Boolean b);
-  CORBA::Long echoLong(CORBA::Long i) throw(eo::SALOME_Exception);
+  CORBA::Long echoLong(CORBA::Long i);
   void echoDouble(CORBA::Double i,CORBA::Double& j) ;
   void echoDoubleVec(const eo::DoubleVec& i,eo::DoubleVec_out j) ;
   void echoDoubleVecVec(const eo::DoubleVecVec&, eo::DoubleVecVec_out);
@@ -229,7 +229,7 @@ void Echo_i::echoDoubleVecVec(const eo::DoubleVecVec& in, eo::DoubleVecVec_out o
   out=new eo::DoubleVecVec(in);
 }
 
-CORBA::Long Echo_i::echoLong(CORBA::Long i ) throw(eo::SALOME_Exception) 
+CORBA::Long Echo_i::echoLong(CORBA::Long i )
 {
   DEBTRACE("Echo_i::echoLong " << i);
   if(i < 0) {