Salome HOME
PR: fix previous commit
authorprascle <prascle>
Wed, 19 Dec 2012 16:31:35 +0000 (16:31 +0000)
committerprascle <prascle>
Wed, 19 Dec 2012 16:31:35 +0000 (16:31 +0000)
src/SMESHUtils/SMESH_TryCatch.cxx
src/SMESHUtils/SMESH_TryCatch.hxx

index 3a1da18855885abcdb645e26ae9dfbe0fbe31efe..78808cf1c92d5dd2373f7bb937565e7b75646c62 100644 (file)
 
 #include "SMESH_TryCatch.hxx"
 
-using namespace SMESH;
-
-void throwSalomeEx(const char* txt)
+void SMESH::throwSalomeEx(const char* txt)
 {
   throw SALOME_Exception( txt );
 }
 
-inline void doNothing(const char* txt)
+void SMESH::doNothing(const char* txt)
 {
   MESSAGE( txt << " " << __FILE__ << ": " << __LINE__ );
 }
index f8e2fe2ada066905eaf5ea5507dde199fd49390b..8f1746c8377486318364675864dd108409ae0b7b 100644 (file)
 namespace SMESH
 {
   void throwSalomeEx(const char* txt);
-  inline void doNothing(const char* txt);
+  void doNothing(const char* txt);
 }
 
 #endif