Removed test for compilers that support local types as template params.

[SVN r78546]
This commit is contained in:
Lorenzo Caminiti 2012-05-23 02:59:15 +00:00
parent 2f271e1cc9
commit 2802382429
3 changed files with 2 additions and 39 deletions

View File

@ -12,12 +12,12 @@
#include <boost/preprocessor/logical/compl.hpp>
// `is_front_macro(tokens)` is 1 if `tokens` start w/ `keyword` to add, else 0.
#define BOOST_CLOURE_DETAIL_PP_KEYWORD_FACILITY_ADD_FRONT( \
#define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_ADD_FRONT( \
tokens, is_front_macro, keyword) \
BOOST_PP_EXPR_IIF(BOOST_PP_COMPL(is_front_macro(tokens)), keyword) tokens
// `is_back_macro(tokens)` is 1 if `tokens` end with `keyword` to add, else 0.
#define BOOST_CLOURE_DETAIL_PP_KEYWORD_FACILITY_ADD_BACK( \
#define BOOST_LOCAL_FUNCTION_DETAIL_PP_KEYWORD_FACILITY_ADD_BACK( \
tokens, is_back_macro, keyword) \
tokens BOOST_PP_EXPR_IIF(BOOST_PP_COMPL(is_back_macro(tokens)), keyword)

View File

@ -31,7 +31,6 @@ vaseq run all_decl ;
vaseq run factorial ;
vaseq run goto ;
vaseq compile-fail goto_error ;
run locals_as_tparams.cpp ;
vaseq run macro_commas ;
vaseq run nesting ;
vaseq run operator ;

View File

@ -1,36 +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/local_function.hpp>
// This test make sure that compilers for which local classes are expected to
// be valid template parameters indeed support such functionality.
// This feature is enabled by both BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
// and Boost.Config's BOOST_NO_LOCAL_CLASS_TEMPLATE_PARAMETERS. When supported,
// this feature is used to speed-up local function calls. This feature is
// supported by all standard C++11 compilers and some C++03 compilers as an
// extension (but not by the C++03 standard).
#if BOOST_LOCAL_FUNCTION_CONFIG_LOCALS_AS_TPARAMS
# define LOCALS_AS_TPARAMS_TFUNC call_expected_to_pass
# define LOCALS_AS_TPARAMS_TCLASS instantiation_expected_to_pass
# define LOCALS_AS_TPARAMS_EXIT_CODE 0 // Pass.
#else
# define LOCALS_AS_TPARAMS_TFUNC call_exptected_to_fail
# define LOCALS_AS_TPARAMS_TCLASS instantiation_expected_to_fail
# define LOCALS_AS_TPARAMS_EXIT_CODE 1 // Fails.
#endif
template<typename T> struct LOCALS_AS_TPARAMS_TCLASS { void use(void) {} };
template<typename T> void LOCALS_AS_TPARAMS_TFUNC(T) {}
int main(void) {
struct local_class {} local_obj;
LOCALS_AS_TPARAMS_TCLASS<local_class>().use();
LOCALS_AS_TPARAMS_TFUNC(local_obj);
return LOCALS_AS_TPARAMS_EXIT_CODE;
}