2018-09-05 17:06:42 +03:00
|
|
|
// Test for quick_exit.hpp
|
|
|
|
//
|
|
|
|
// Copyright 2018 Peter Dimov
|
|
|
|
//
|
|
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
|
|
// See accompanying file LICENSE_1_0.txt or copy at
|
|
|
|
// http://www.boost.org/LICENSE_1_0.txt
|
|
|
|
|
2021-11-01 02:04:45 +02:00
|
|
|
#if defined(_MSC_VER)
|
|
|
|
# pragma warning(disable: 4702) // unreachable code
|
|
|
|
#endif
|
2018-09-05 17:06:42 +03:00
|
|
|
|
|
|
|
#include <boost/core/quick_exit.hpp>
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
boost::quick_exit( 1 );
|
|
|
|
return 0;
|
|
|
|
}
|