diff options
author | Oz Linden <oz@lindenlab.com> | 2020-08-26 16:37:23 -0400 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2020-08-26 16:37:23 -0400 |
commit | 6007475c87d3edbb023cc64bb097d33e6c04dfd4 (patch) | |
tree | 5a91ceaf30766bf97cafa38d34e05263f7a62e0c /indra/test | |
parent | 1aa140d3affa28d85a41d55f2566a19fb9d2cff5 (diff) |
SL-10297 fix MSVC unreachable code warning (for real)
Diffstat (limited to 'indra/test')
-rw-r--r-- | indra/test/test.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/indra/test/test.cpp b/indra/test/test.cpp index 55dad94bc1..571f502861 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -80,6 +80,7 @@ LLError::ErrFatalHookResult wouldHaveCrashed(const std::string& message) #if LL_MSVC #pragma warning (push) #pragma warning (disable : 4702) // warning C4702: unreachable code +#endif tut::fail("fatal error message: " + message); return LLError::ERR_DO_NOT_CRASH; #if LL_MSVC |