[DEV] add v1.76.0

This commit is contained in:
2021-10-05 21:37:46 +02:00
parent a97e9ae7d4
commit d0115b733d
45133 changed files with 4744437 additions and 1026325 deletions

View File

@@ -18,7 +18,6 @@ rule vaseq ( command target )
}
vaseq run add ;
vaseq run add_classifiers ;
vaseq run add_default ;
vaseq run add_except ;
vaseq run add_inline ;

View File

@@ -1,30 +0,0 @@
// Copyright (C) 2009-2012 Lorenzo Caminiti
// Distributed under the Boost Software License, Version 1.0
// (see accompanying file LICENSE_1_0.txt or a copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Home at http://www.boost.org/libs/local_function
#include <boost/config.hpp>
#if !defined(BOOST_NO_CXX11_AUTO_DECLARATIONS)
# error "auto-declarations not allowed (using `auto` as storage classifier)"
#elif defined(BOOST_NO_CXX11_VARIADIC_MACROS)
# error "variadic macros required"
#else
#include <boost/local_function.hpp>
#include <boost/detail/lightweight_test.hpp>
int main(void) {
//[add_classifiers
int BOOST_LOCAL_FUNCTION(auto int x, register int y) { // Classifiers.
return x + y;
} BOOST_LOCAL_FUNCTION_NAME(add)
//]
BOOST_TEST(add(1, 2) == 3);
return boost::report_errors();
}
#endif // AUTO_DECLARATIONS && VARIADIC_MACROS

View File

@@ -1,26 +0,0 @@
// Copyright (C) 2009-2012 Lorenzo Caminiti
// Distributed under the Boost Software License, Version 1.0
// (see accompanying file LICENSE_1_0.txt or a copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Home at http://www.boost.org/libs/local_function
#include <boost/config.hpp>
#ifndef BOOST_NO_CXX11_AUTO_DECLARATIONS
# error "auto-declarations not allowed (using `auto` as storage classifier)"
#else
#include <boost/local_function.hpp>
#include <boost/detail/lightweight_test.hpp>
int main(void) {
int BOOST_LOCAL_FUNCTION( (auto int x) (register int y) ) {
return x + y;
} BOOST_LOCAL_FUNCTION_NAME(add)
BOOST_TEST(add(1, 2) == 3);
return boost::report_errors();
}
#endif // AUTO_DECLARATIONS

View File

@@ -1,10 +0,0 @@
// Copyright (C) 2009-2012 Lorenzo Caminiti
// Distributed under the Boost Software License, Version 1.0
// (see accompanying file LICENSE_1_0.txt or a copy at
// http://www.boost.org/LICENSE_1_0.txt)
// Home at http://www.boost.org/libs/local_function
#include "nova.hpp"
#include "add_classifiers_seq.cpp"