From e3772413cbb8fc8ea3bee6d016bfe7fe9aa3fa07 Mon Sep 17 00:00:00 2001 From: vsv Date: Mon, 5 May 2014 13:45:42 +0400 Subject: [PATCH] Compilation error on Linux corrected --- src/Events/Events_Error.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2