From 816657347f9ceeecbad55b1f98d95ee5d59f77b6 Mon Sep 17 00:00:00 2001 From: Dennis Luxen Date: Wed, 28 Sep 2011 17:09:05 +0200 Subject: [PATCH] Function installCrashHandler() in Util/LinuxStackTrace.h shall not be const equally in debug and normal build, thanks tolmaion --- Util/LinuxStackTrace.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Util/LinuxStackTrace.h b/Util/LinuxStackTrace.h index 2c0b2e95a..f61028d44 100644 --- a/Util/LinuxStackTrace.h +++ b/Util/LinuxStackTrace.h @@ -151,6 +151,6 @@ void installCrashHandler(std::string b) { #endif } #else -inline void installCrashHandler(std::string b) const {} +inline void installCrashHandler(std::string b) {} #endif #endif /* LINUXSTACKTRACE_H_ */