Remove uses of BOOST_NO_CXX11_VARIADIC_TEMPLATES

This commit is contained in:
Peter Dimov
2024-09-25 03:04:27 +03:00
parent 38b737c490
commit b4a0629b63
24 changed files with 46 additions and 731 deletions

View File

@ -5,12 +5,9 @@ Copyright 2017 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_RVALUE_REFERENCES) && \
!defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && \
!defined(BOOST_NO_CXX11_ALLOCATOR)
#include <boost/core/lightweight_test.hpp>
#include <boost/smart_ptr/make_local_shared.hpp>
#include <boost/core/lightweight_test.hpp>
#include <boost/config.hpp>
struct allow { };
@ -157,9 +154,3 @@ int main()
}
return boost::report_errors();
}
#else
int main()
{
return 0;
}
#endif