PR: fix previous commit

This commit is contained in:
prascle 2012-12-19 16:31:35 +00:00
parent 2cb5a0ee33
commit 2af758c692
2 changed files with 3 additions and 5 deletions

View File

@ -21,14 +21,12 @@
#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__ );
}

View File

@ -103,7 +103,7 @@
namespace SMESH
{
void throwSalomeEx(const char* txt);
inline void doNothing(const char* txt);
void doNothing(const char* txt);
}
#endif