Disable C4702 in quick_exit_test.cpp, quick_exit_fail.cpp

This commit is contained in:
Peter Dimov 2021-11-01 02:04:45 +02:00
parent 44e294fff1
commit 847f9d43fe
2 changed files with 6 additions and 2 deletions

View File

@ -1,4 +1,3 @@
// Test for quick_exit.hpp
//
// Copyright 2018 Peter Dimov
@ -7,6 +6,9 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#if defined(_MSC_VER)
# pragma warning(disable: 4702) // unreachable code
#endif
#include <boost/core/quick_exit.hpp>

View File

@ -1,4 +1,3 @@
// Test for quick_exit.hpp
//
// Copyright 2018 Peter Dimov
@ -7,6 +6,9 @@
// See accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt
#if defined(_MSC_VER)
# pragma warning(disable: 4702) // unreachable code
#endif
#include <boost/core/quick_exit.hpp>