summaryrefslogtreecommitdiff
path: root/indra/test
diff options
context:
space:
mode:
authorOz Linden <oz@lindenlab.com>2020-08-26 16:37:23 -0400
committerOz Linden <oz@lindenlab.com>2020-08-26 16:37:23 -0400
commit6007475c87d3edbb023cc64bb097d33e6c04dfd4 (patch)
tree5a91ceaf30766bf97cafa38d34e05263f7a62e0c /indra/test
parent1aa140d3affa28d85a41d55f2566a19fb9d2cff5 (diff)
SL-10297 fix MSVC unreachable code warning (for real)
Diffstat (limited to 'indra/test')
-rw-r--r--indra/test/test.cpp1
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