From: vsv Date: Mon, 5 May 2014 09:45:42 +0000 (+0400) Subject: Compilation error on Linux corrected X-Git-Tag: V_0.2~95 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=e3772413cbb8fc8ea3bee6d016bfe7fe9aa3fa07;p=modules%2Fshaper.git Compilation error on Linux corrected --- diff --git a/src/Events/Events_Error.cpp b/src/Events/Events_Error.cpp index eba313e5f..ae5d83c37 100644 --- a/src/Events/Events_Error.cpp +++ b/src/Events/Events_Error.cpp @@ -35,7 +35,7 @@ void Events_Error::send(char* theDescription, const void* theSender) Events_Loop::loop()->send(anError); } -static void send(std::string theDescription, const void* theSender = 0) +void Events_Error::send(std::string theDescription, const void* theSender) { Events_Error::send(theDescription.c_str(), theSender); }