Remove uses of BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX

This commit is contained in:
Peter Dimov
2024-09-25 18:08:57 +03:00
parent 000c7ae5ac
commit abb0071ca6
5 changed files with 6 additions and 50 deletions

View File

@@ -5,10 +5,9 @@ Copyright 2012-2015 Glen Joseph Fernandes
Distributed under the Boost Software License, Version 1.0.
(http://www.boost.org/LICENSE_1_0.txt)
*/
#include <boost/config.hpp>
#if !defined(BOOST_NO_CXX11_UNIFIED_INITIALIZATION_SYNTAX)
#include <boost/core/lightweight_test.hpp>
#include <boost/smart_ptr/make_shared.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/config.hpp>
int main()
{
@@ -46,9 +45,3 @@ int main()
}
return boost::report_errors();
}
#else
int main()
{
return 0;
}
#endif