summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/corelib/global/qlogging.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/corelib/global/qlogging.cpp b/src/corelib/global/qlogging.cpp
index c567d339fd..bb12807f9a 100644
--- a/src/corelib/global/qlogging.cpp
+++ b/src/corelib/global/qlogging.cpp
@@ -100,7 +100,7 @@ extern bool usingWinMain;
everything after character 255, but will work in out of memory situations.
Stop the execution afterwards.
*/
-static void qEmergencyOut(QtMsgType msgType, const char *msg, va_list ap)
+static void qEmergencyOut(QtMsgType msgType, const char *msg, va_list ap) Q_DECL_NOEXCEPT
{
char emergency_buf[256] = { '\0' };
emergency_buf[255] = '\0';