Fix inconsistencies in name of boost_no_cxx14_digit_separator(s).

This commit is contained in:
jzmaddock
2015-04-24 17:46:29 +01:00
parent 88167ee705
commit a2ad620450
7 changed files with 9 additions and 9 deletions

View File

@@ -335,7 +335,7 @@ explicit cxx14_constexpr ;
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_DECLTYPE_AUTO : cxx14_decltype_auto ; run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_DECLTYPE_AUTO : cxx14_decltype_auto ;
alias cxx14_decltype_auto : cxx14_decltype_auto.output ; alias cxx14_decltype_auto : cxx14_decltype_auto.output ;
explicit cxx14_decltype_auto ; 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 ; alias cxx14_digit_separator : cxx14_digit_separator.output ;
explicit cxx14_digit_separator ; explicit cxx14_digit_separator ;
run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS : cxx14_generic_lambdas ; run-simple test_case.cpp : : : <define>TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS : cxx14_generic_lambdas ;

View File

@@ -423,7 +423,7 @@ namespace test = boost_no_cxx14_decltype_auto;
#endif #endif
#ifdef TEST_BOOST_NO_CXX14_DIGIT_SEPARATORS #ifdef TEST_BOOST_NO_CXX14_DIGIT_SEPARATORS
# include "../test/boost_no_cxx14_digit_separator.ipp" # include "../test/boost_no_cxx14_digit_separator.ipp"
namespace test = boost_no_cxx14_digit_separator; namespace test = boost_no_cxx14_digit_separators;
#endif #endif
#ifdef TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS #ifdef TEST_BOOST_NO_CXX14_GENERIC_LAMBDAS
# include "../test/boost_no_cxx14_generic_lambda.ipp" # include "../test/boost_no_cxx14_generic_lambda.ipp"

View File

@@ -331,7 +331,7 @@ test-suite "BOOST_NO_CXX14_CONSTEXPR" :
test-suite "BOOST_NO_CXX14_DECLTYPE_AUTO" : test-suite "BOOST_NO_CXX14_DECLTYPE_AUTO" :
[ run ../no_cxx14_decltype_auto_pass.cpp ] [ run ../no_cxx14_decltype_auto_pass.cpp ]
[ compile-fail ../no_cxx14_decltype_auto_fail.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 ] [ run ../no_cxx14_digit_separator_pass.cpp ]
[ compile-fail ../no_cxx14_digit_separator_fail.cpp ] ; [ compile-fail ../no_cxx14_digit_separator_fail.cpp ] ;
test-suite "BOOST_NO_CXX14_GENERIC_LAMBDAS" : test-suite "BOOST_NO_CXX14_GENERIC_LAMBDAS" :

View File

@@ -11,7 +11,7 @@
// TITLE: C++14 digit separator unavailable // TITLE: C++14 digit separator unavailable
// DESCRIPTION: The compiler does not support C++14 digit separator // DESCRIPTION: The compiler does not support C++14 digit separator
namespace boost_no_cxx14_digit_separator namespace boost_no_cxx14_digit_separators
{ {
int test() int test()

View File

@@ -280,7 +280,7 @@ namespace boost_no_cxx14_decltype_auto = empty_boost;
#ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS #ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS
#include "boost_no_cxx14_digit_separator.ipp" #include "boost_no_cxx14_digit_separator.ipp"
#else #else
namespace boost_no_cxx14_digit_separator = empty_boost; namespace boost_no_cxx14_digit_separators = empty_boost;
#endif #endif
#ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS #ifndef BOOST_NO_CXX14_GENERIC_LAMBDAS
#include "boost_no_cxx14_generic_lambda.ipp" #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; std::cerr << "Failed test for BOOST_NO_CXX14_DECLTYPE_AUTO at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count; ++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; std::cerr << "Failed test for BOOST_NO_CXX14_DIGIT_SEPARATORS at: " << __FILE__ << ":" << __LINE__ << std::endl;
++error_count; ++error_count;

View File

@@ -32,6 +32,6 @@
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cxx14_digit_separator::test(); return boost_no_cxx14_digit_separators::test();
} }

View File

@@ -27,11 +27,11 @@
#ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS #ifndef BOOST_NO_CXX14_DIGIT_SEPARATORS
#include "boost_no_cxx14_digit_separator.ipp" #include "boost_no_cxx14_digit_separator.ipp"
#else #else
namespace boost_no_cxx14_digit_separator = empty_boost; namespace boost_no_cxx14_digit_separators = empty_boost;
#endif #endif
int main( int, char *[] ) int main( int, char *[] )
{ {
return boost_no_cxx14_digit_separator::test(); return boost_no_cxx14_digit_separators::test();
} }