Fix a warning in clang
This commit is contained in:
parent
47f0d7f3a6
commit
608b8f8b44
|
@ -27,7 +27,6 @@
|
|||
#define RAD_TO_DEC (180.0/acos(-1))
|
||||
|
||||
#define BUILD_COMPILER "gcc " __VERSION__
|
||||
#define BUILD_DATE __DATE__
|
||||
|
||||
#ifndef BUILD_COMMIT
|
||||
#define BUILD_COMMIT "devel"
|
||||
|
|
|
@ -153,3 +153,8 @@ std::string Application::getOs()
|
|||
return "linux";
|
||||
#endif
|
||||
}
|
||||
|
||||
std::string Application::getBuildDate()
|
||||
{
|
||||
return std::string(__DATE__);
|
||||
}
|
||||
|
|
|
@ -53,7 +53,7 @@ public:
|
|||
const std::string& getVersion() { return m_appVersion; }
|
||||
|
||||
std::string getBuildCompiler() { return BUILD_COMPILER; }
|
||||
std::string getBuildDate() { return BUILD_DATE; }
|
||||
std::string getBuildDate();
|
||||
std::string getBuildRevision() { return BUILD_REVISION; }
|
||||
std::string getBuildCommit() { return BUILD_COMMIT; }
|
||||
std::string getBuildType() { return BUILD_TYPE; }
|
||||
|
|
|
@ -44,7 +44,7 @@ void crashHandler(int signum, siginfo_t* info, void* secret)
|
|||
ss << stdext::format("app name: %s\n", g_app.getName());
|
||||
ss << stdext::format("app version: %s\n", g_app.getVersion());
|
||||
ss << stdext::format("build compiler: %s\n", BUILD_COMPILER);
|
||||
ss << stdext::format("build date: %s\n", BUILD_DATE);
|
||||
ss << stdext::format("build date: %s\n", __DATE__);
|
||||
ss << stdext::format("build type: %s\n", BUILD_TYPE);
|
||||
ss << stdext::format("build revision: %s (%s)\n", BUILD_REVISION, BUILD_COMMIT);
|
||||
ss << stdext::format("crash date: %s\n", stdext::date_time_string());
|
||||
|
|
|
@ -114,7 +114,7 @@ LONG CALLBACK ExceptionHandler(LPEXCEPTION_POINTERS e)
|
|||
ss << stdext::format("app name: %s\n", g_app.getName().c_str());
|
||||
ss << stdext::format("app version: %s\n", g_app.getVersion().c_str());
|
||||
ss << stdext::format("build compiler: %s\n", BUILD_COMPILER);
|
||||
ss << stdext::format("build date: %s\n", BUILD_DATE);
|
||||
ss << stdext::format("build date: %s\n", __DATE__);
|
||||
ss << stdext::format("build type: %s\n", BUILD_TYPE);
|
||||
ss << stdext::format("build revision: %s (%s)\n", BUILD_REVISION, BUILD_COMMIT);
|
||||
ss << stdext::format("crash date: %s\n", stdext::date_time_string().c_str());
|
||||
|
|
Loading…
Reference in New Issue