diff options
Diffstat (limited to 'indra')
| -rw-r--r-- | indra/test/test.cpp | 6 | 
1 files changed, 6 insertions, 0 deletions
| diff --git a/indra/test/test.cpp b/indra/test/test.cpp index 748d042631..55dad94bc1 100644 --- a/indra/test/test.cpp +++ b/indra/test/test.cpp @@ -77,8 +77,14 @@  LLError::ErrFatalHookResult wouldHaveCrashed(const std::string& message)  { +#if LL_MSVC +#pragma warning (push) +#pragma warning (disable : 4702) // warning C4702: unreachable code  	tut::fail("fatal error message: " + message);      return LLError::ERR_DO_NOT_CRASH; +#if LL_MSVC +#pragma warning (pop) +#endif  }  namespace tut | 
