diff options
Diffstat (limited to 'gtk/PlatGTK.cxx')
-rwxr-xr-x | gtk/PlatGTK.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gtk/PlatGTK.cxx b/gtk/PlatGTK.cxx index 1a1907e69..d055ac241 100755 --- a/gtk/PlatGTK.cxx +++ b/gtk/PlatGTK.cxx @@ -2023,14 +2023,14 @@ unsigned int Platform::DoubleClickTime() { return 500; // Half a second } -void Platform::DebugDisplay(const char *s) { +void Platform::DebugDisplay(const char *s) noexcept { fprintf(stderr, "%s", s); } //#define TRACE #ifdef TRACE -void Platform::DebugPrintf(const char *format, ...) { +void Platform::DebugPrintf(const char *format, ...) noexcept { char buffer[2000]; va_list pArguments; va_start(pArguments, format); @@ -2039,20 +2039,20 @@ void Platform::DebugPrintf(const char *format, ...) { Platform::DebugDisplay(buffer); } #else -void Platform::DebugPrintf(const char *, ...) {} +void Platform::DebugPrintf(const char *, ...) noexcept {} #endif // Not supported for GTK+ static bool assertionPopUps = true; -bool Platform::ShowAssertionPopUps(bool assertionPopUps_) { +bool Platform::ShowAssertionPopUps(bool assertionPopUps_) noexcept { const bool ret = assertionPopUps; assertionPopUps = assertionPopUps_; return ret; } -void Platform::Assert(const char *c, const char *file, int line) { +void Platform::Assert(const char *c, const char *file, int line) noexcept { char buffer[2000]; g_snprintf(buffer, sizeof(buffer), "Assertion [%s] failed at %s %d\r\n", c, file, line); Platform::DebugDisplay(buffer); |