Function installCrashHandler() in Util/LinuxStackTrace.h shall not be const equally in debug and normal build, thanks tolmaion

This commit is contained in:
Dennis Luxen
2011-09-28 17:09:05 +02:00
parent 8533b5d0a2
commit 816657347f
+1 -1
View File
@@ -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_ */