Added BOOST_NO_CXX11_INLINE_NAMESPACES and BOOST_NO_CXX11_TRAILING_RESULT_TYPES macros. Also corrected some tests that were using outdated testcase namespaces.

[SVN r84873]
This commit is contained in:
Andrey Semashev
2013-06-22 12:23:09 +00:00
parent 411399ec60
commit 23579c60d2
74 changed files with 349 additions and 81 deletions
+2 -2
View File
@@ -27,11 +27,11 @@
#ifndef BOOST_NO_CXX11_VARIADIC_MACROS
#include "boost_no_variadic_macros.ipp"
#else
namespace boost_no_variadic_macros = empty_boost;
namespace boost_no_cxx11_variadic_macros = empty_boost;
#endif
int main( int, char *[] )
{
return boost_no_variadic_macros::test();
return boost_no_cxx11_variadic_macros::test();
}