From 66f28ae02b763f6aee9781677f63c55ffcbe0e4c Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Fri, 1 Feb 2013 19:36:47 +0100 Subject: [PATCH] Build fix for Windows. --- lib/base/application.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lib/base/application.cpp b/lib/base/application.cpp index 2851001ba..e8568282d 100644 --- a/lib/base/application.cpp +++ b/lib/base/application.cpp @@ -274,6 +274,18 @@ void Application::SetMainThread(void) m_MainThreadID = boost::this_thread::get_id(); } +/** + * Displays a message that tells users what to do when they encounter a bug. + */ +void Application::DisplayBugMessage(void) +{ + std::cerr << "***" << std::endl + << "*** This would indicate a bug in Icinga 2. Please submit a bug report at https://dev.icinga.org/ and include" << std::endl + << "*** this stack trace as well as any other information that might be useful in order to reproduce this problem." << std::endl + << "***" << std::endl + << std::endl; +} + #ifndef _WIN32 /** * Signal handler for SIGINT. Prepares the application for cleanly @@ -298,18 +310,6 @@ void Application::SigIntHandler(int signum) sigaction(SIGINT, &sa, NULL); } -/** - * Displays a message that tells users what to do when they encounter a bug. - */ -void Application::DisplayBugMessage(void) -{ - std::cerr << "***" << std::endl - << "*** This would indicate a bug in Icinga 2. Please submit a bug report at https://dev.icinga.org/ and include" << std::endl - << "*** this stack trace as well as any other information that might be useful in order to reproduce this problem." << std::endl - << "***" << std::endl - << std::endl; -} - /** * Signal handler for SIGABRT. Helps with debugging assert()s. *