mirror of
https://github.com/boostorg/system.git
synced 2026-04-29 02:13:19 +02:00
Add std_interop_test to msvc solution. Add cout message indicating whether or not inter-operation will be tested.
This commit is contained in:
@@ -15,7 +15,12 @@
|
||||
|
||||
#if defined(BOOST_NO_CXX11_HDR_SYSTEM_ERROR)
|
||||
|
||||
int main() {}
|
||||
int main()
|
||||
{
|
||||
std::cout
|
||||
<< "The version of the C++ standard library being used does not"
|
||||
" support header <system_error> so interoperation will not be tested.\n";
|
||||
}
|
||||
|
||||
#else
|
||||
|
||||
@@ -349,6 +354,9 @@ static void test_user2_category()
|
||||
|
||||
int main()
|
||||
{
|
||||
std::cout
|
||||
<< "The version of the C++ standard library being used"
|
||||
" supports header <system_error> so interoperation will be tested.\n";
|
||||
test_generic_category();
|
||||
test_system_category();
|
||||
test_user_category();
|
||||
|
||||
Reference in New Issue
Block a user