mirror of
https://github.com/boostorg/config.git
synced 2025-07-30 04:17:16 +02:00
Fix inconsistencies in name of boost_no_cxx14_digit_separator(s).
This commit is contained in:
@ -335,7 +335,7 @@ explicit cxx14_constexpr ;
|
||||
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_DECLTYPE_AUTO : cxx14_decltype_auto ;
|
||||
alias cxx14_decltype_auto : cxx14_decltype_auto.output ;
|
||||
explicit cxx14_decltype_auto ;
|
||||
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_DIGIT_SEPARATOR : cxx14_digit_separator ;
|
||||
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_DIGIT_SEPARATORS : cxx14_digit_separators ;
|
||||
alias cxx14_digit_separator : cxx14_digit_separator.output ;
|
||||
explicit cxx14_digit_separator ;
|
||||
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS : cxx14_generic_lambdas ;
|
||||
|
@ -423,7 +423,7 @@ namespace test = boost_no_cxx14_decltype_auto;
|
||||
#endif
|
||||
#ifdef TEST_BOOST_NO_CXX14_DIGIT_SEPARATORS
|
||||
# include "../test/boost_no_cxx14_digit_separator.ipp"
|
||||
namespace test = boost_no_cxx14_digit_separator;
|
||||
namespace test = boost_no_cxx14_digit_separators;
|
||||
#endif
|
||||
#ifdef TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS
|
||||
# include "../test/boost_no_cxx14_generic_lambda.ipp"
|
||||
|
@ -331,7 +331,7 @@ test-suite "BOOST_NO_CXX14_CONSTEXPR" :
|
||||
test-suite "BOOST_NO_CXX14_DECLTYPE_AUTO" :
|
||||
[ run ../no_cxx14_decltype_auto_pass.cpp ]
|
||||
[ compile-fail ../no_cxx14_decltype_auto_fail.cpp ] ;
|
||||
test-suite "BOOST_NO_CXX14_DIGIT_SEPARATOR" :
|
||||
test-suite "BOOST_NO_CXX14_DIGIT_SEPARATORS" :
|
||||
[ run ../no_cxx14_digit_separator_pass.cpp ]
|
||||
[ compile-fail ../no_cxx14_digit_separator_fail.cpp ] ;
|
||||
test-suite "BOOST_NO_CXX14_GENERIC_LAMBDAS" :
|
||||
|
@ -11,7 +11,7 @@
|
||||
// TITLE: C++14 digit separator unavailable
|
||||
// DESCRIPTION: The compiler does not support C++14 digit separator
|
||||
|
||||
namespace boost_no_cxx14_digit_separator
|
||||
namespace boost_no_cxx14_digit_separators
|
||||
{
|
||||
|
||||
int test()
|
||||
|
@ -280,7 +280,7 @@ namespace boost_no_cxx14_decltype_auto = empty_boost;
|
||||
#ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS
|
||||
#include "boost_no_cxx14_digit_separator.ipp"
|
||||
#else
|
||||
namespace boost_no_cxx14_digit_separator = empty_boost;
|
||||
namespace boost_no_cxx14_digit_separators = empty_boost;
|
||||
#endif
|
||||
#ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS
|
||||
#include "boost_no_cxx14_generic_lambda.ipp"
|
||||
@ -1501,7 +1501,7 @@ int main( int, char *[] )
|
||||
std::cerr << "Failed test for BOOST_NO_CXX14_DECLTYPE_AUTO at: " << __FILE__ << ":" << __LINE__ << std::endl;
|
||||
++error_count;
|
||||
}
|
||||
if(0 != boost_no_cxx14_digit_separator::test())
|
||||
if(0 != boost_no_cxx14_digit_separators::test())
|
||||
{
|
||||
std::cerr << "Failed test for BOOST_NO_CXX14_DIGIT_SEPARATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
|
||||
++error_count;
|
||||
|
@ -32,6 +32,6 @@
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return boost_no_cxx14_digit_separator::test();
|
||||
return boost_no_cxx14_digit_separators::test();
|
||||
}
|
||||
|
||||
|
@ -27,11 +27,11 @@
|
||||
#ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS
|
||||
#include "boost_no_cxx14_digit_separator.ipp"
|
||||
#else
|
||||
namespace boost_no_cxx14_digit_separator = empty_boost;
|
||||
namespace boost_no_cxx14_digit_separators = empty_boost;
|
||||
#endif
|
||||
|
||||
int main( int, char *[] )
|
||||
{
|
||||
return boost_no_cxx14_digit_separator::test();
|
||||
return boost_no_cxx14_digit_separators::test();
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user