mirror of
https://github.com/boostorg/core.git
synced 2025-05-10 07:13:54 +00:00
Disable C4702 in quick_exit_test.cpp, quick_exit_fail.cpp
This commit is contained in:
parent
44e294fff1
commit
847f9d43fe
@ -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>
|
||||
|
||||
|
@ -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>
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user