diff options
author | Oz Linden <oz@lindenlab.com> | 2019-09-25 12:58:43 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2019-09-25 12:58:43 -0400 |
commit | 66970f2a8c048647242887eb3f0c7fd974a303ac (patch) | |
tree | 6b1de7b87ddb6b4c1802e70564e4cd7dc3352534 /indra | |
parent | 79801c717de5de6b86b45eadf61b352c9951f61e (diff) |
fix spurious per-frame warning about signal handlers in Windows
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llappviewerwin32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llappviewerwin32.cpp b/indra/newview/llappviewerwin32.cpp index 235f7cc8ed..63de9af566 100644 --- a/indra/newview/llappviewerwin32.cpp +++ b/indra/newview/llappviewerwin32.cpp @@ -798,7 +798,7 @@ bool LLAppViewerWin32::beingDebugged() bool LLAppViewerWin32::restoreErrorTrap() { - return false; + return true; // we don't check for handler collisions on windows, so just say they're ok } void LLAppViewerWin32::initCrashReporting(bool reportFreeze) |