From dbc5a39d1f9a35d15d1181c6242fa729d839ac8c Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Mon, 11 Mar 2024 08:38:16 -0500 Subject: [PATCH 1/8] Make the library modular usable. --- build.jam | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 build.jam diff --git a/build.jam b/build.jam new file mode 100644 index 0000000..197ca09 --- /dev/null +++ b/build.jam @@ -0,0 +1,24 @@ +# Copyright René Ferdinand Rivera Morell 2023 +# Distributed under the Boost Software License, Version 1.0. +# (See accompanying file LICENSE_1_0.txt or copy at +# http://www.boost.org/LICENSE_1_0.txt) + +import project ; + +project /boost/tti + : common-requirements + /boost/config//boost_config + /boost/function_types//boost_function_types + /boost/mpl//boost_mpl + /boost/preprocessor//boost_preprocessor + /boost/type_traits//boost_type_traits + include + ; + +explicit + [ alias boost_tti ] + [ alias all : boost_tti test ] + ; + +call-if : boost-library tti + ; From ad01e064b735e68a397ac147b88a9fe3ad94f375 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 29 Mar 2024 21:16:00 -0500 Subject: [PATCH 2/8] Switch to library requirements instead of source. As source puts extra source in install targets. --- build.jam | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build.jam b/build.jam index 197ca09..334a438 100644 --- a/build.jam +++ b/build.jam @@ -7,11 +7,11 @@ import project ; project /boost/tti : common-requirements - /boost/config//boost_config - /boost/function_types//boost_function_types - /boost/mpl//boost_mpl - /boost/preprocessor//boost_preprocessor - /boost/type_traits//boost_type_traits + /boost/config//boost_config + /boost/function_types//boost_function_types + /boost/mpl//boost_mpl + /boost/preprocessor//boost_preprocessor + /boost/type_traits//boost_type_traits include ; From 9b053b8524f40ef388e90090eb06ab2de2ffb0e5 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 5 May 2024 09:00:01 -0500 Subject: [PATCH 3/8] Add requires-b2 check to top-level build file. --- build.jam | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build.jam b/build.jam index 334a438..eced37c 100644 --- a/build.jam +++ b/build.jam @@ -3,6 +3,8 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) +require-b2 5.1 ; + import project ; project /boost/tti From 467730b7c12b963f54e7e8b1c1191533b6a0e674 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 14 Jun 2024 11:33:56 -0500 Subject: [PATCH 4/8] Bump B2 require to 5.2 --- build.jam | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/build.jam b/build.jam index eced37c..98f552d 100644 --- a/build.jam +++ b/build.jam @@ -3,9 +3,7 @@ # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) -require-b2 5.1 ; - -import project ; +require-b2 5.2 ; project /boost/tti : common-requirements From 8f1e4e33877c45dacbf9a9adec1a3fb1fb8c1da4 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sat, 20 Jul 2024 22:52:03 -0500 Subject: [PATCH 5/8] Update copyright dates. --- build.jam | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.jam b/build.jam index 98f552d..3eb33da 100644 --- a/build.jam +++ b/build.jam @@ -1,4 +1,4 @@ -# Copyright René Ferdinand Rivera Morell 2023 +# Copyright René Ferdinand Rivera Morell 2023-2024 # Distributed under the Boost Software License, Version 1.0. # (See accompanying file LICENSE_1_0.txt or copy at # http://www.boost.org/LICENSE_1_0.txt) From dbb05ed83c6defb1187018dc7270db5462489238 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Tue, 23 Jul 2024 22:34:22 -0500 Subject: [PATCH 6/8] Move inter-lib dependencies to a project variable and into the build targets. --- build.jam | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/build.jam b/build.jam index 3eb33da..65cbe1a 100644 --- a/build.jam +++ b/build.jam @@ -5,20 +5,23 @@ require-b2 5.2 ; +constant boost_dependencies : + /boost/config//boost_config + /boost/function_types//boost_function_types + /boost/mpl//boost_mpl + /boost/preprocessor//boost_preprocessor + /boost/type_traits//boost_type_traits ; + project /boost/tti : common-requirements - /boost/config//boost_config - /boost/function_types//boost_function_types - /boost/mpl//boost_mpl - /boost/preprocessor//boost_preprocessor - /boost/type_traits//boost_type_traits include ; explicit - [ alias boost_tti ] + [ alias boost_tti : : : : $(boost_dependencies) ] [ alias all : boost_tti test ] ; call-if : boost-library tti ; + From 7a4b13ad871ff2ac37b057647fa30604aa4f9ec5 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Sun, 28 Jul 2024 11:47:57 -0500 Subject: [PATCH 7/8] Adjust doc build to avoid boost-root references. --- doc/Jamfile.v2 | 66 +++++++++++++++++++++++++------------------------- 1 file changed, 33 insertions(+), 33 deletions(-) diff --git a/doc/Jamfile.v2 b/doc/Jamfile.v2 index ebaa355..102e046 100644 --- a/doc/Jamfile.v2 +++ b/doc/Jamfile.v2 @@ -37,38 +37,38 @@ else doxygen tti_reference : - $(here)/../../../boost/tti/has_class.hpp - $(here)/../../../boost/tti/has_data.hpp - $(here)/../../../boost/tti/has_enum.hpp - $(here)/../../../boost/tti/has_function.hpp - $(here)/../../../boost/tti/has_function_template.hpp - $(here)/../../../boost/tti/has_member_data.hpp - $(here)/../../../boost/tti/has_member_function.hpp - $(here)/../../../boost/tti/has_member_function_template.hpp - $(here)/../../../boost/tti/has_static_member_data.hpp - $(here)/../../../boost/tti/has_static_member_function.hpp - $(here)/../../../boost/tti/has_static_member_function_template.hpp - $(here)/../../../boost/tti/has_template.hpp - $(here)/../../../boost/tti/has_type.hpp - $(here)/../../../boost/tti/has_union.hpp - $(here)/../../../boost/tti/member_type.hpp - $(here)/../../../boost/tti/gen/has_class_gen.hpp - $(here)/../../../boost/tti/gen/has_data_gen.hpp - $(here)/../../../boost/tti/gen/has_enum_gen.hpp - $(here)/../../../boost/tti/gen/has_function_gen.hpp - $(here)/../../../boost/tti/gen/has_function_template_gen.hpp - $(here)/../../../boost/tti/gen/has_member_data_gen.hpp - $(here)/../../../boost/tti/gen/has_member_function_gen.hpp - $(here)/../../../boost/tti/gen/has_member_function_template_gen.hpp - $(here)/../../../boost/tti/gen/has_static_member_data_gen.hpp - $(here)/../../../boost/tti/gen/has_static_member_function_gen.hpp - $(here)/../../../boost/tti/gen/has_static_member_function_template_gen.hpp - $(here)/../../../boost/tti/gen/has_template_gen.hpp - $(here)/../../../boost/tti/gen/has_type_gen.hpp - $(here)/../../../boost/tti/gen/has_union_gen.hpp - $(here)/../../../boost/tti/gen/member_type_gen.hpp - $(here)/../../../boost/tti/gen/namespace_gen.hpp - : + $(here)/../include/boost/tti/has_class.hpp + $(here)/../include/boost/tti/has_data.hpp + $(here)/../include/boost/tti/has_enum.hpp + $(here)/../include/boost/tti/has_function.hpp + $(here)/../include/boost/tti/has_function_template.hpp + $(here)/../include/boost/tti/has_member_data.hpp + $(here)/../include/boost/tti/has_member_function.hpp + $(here)/../include/boost/tti/has_member_function_template.hpp + $(here)/../include/boost/tti/has_static_member_data.hpp + $(here)/../include/boost/tti/has_static_member_function.hpp + $(here)/../include/boost/tti/has_static_member_function_template.hpp + $(here)/../include/boost/tti/has_template.hpp + $(here)/../include/boost/tti/has_type.hpp + $(here)/../include/boost/tti/has_union.hpp + $(here)/../include/boost/tti/member_type.hpp + $(here)/../include/boost/tti/gen/has_class_gen.hpp + $(here)/../include/boost/tti/gen/has_data_gen.hpp + $(here)/../include/boost/tti/gen/has_enum_gen.hpp + $(here)/../include/boost/tti/gen/has_function_gen.hpp + $(here)/../include/boost/tti/gen/has_function_template_gen.hpp + $(here)/../include/boost/tti/gen/has_member_data_gen.hpp + $(here)/../include/boost/tti/gen/has_member_function_gen.hpp + $(here)/../include/boost/tti/gen/has_member_function_template_gen.hpp + $(here)/../include/boost/tti/gen/has_static_member_data_gen.hpp + $(here)/../include/boost/tti/gen/has_static_member_function_gen.hpp + $(here)/../include/boost/tti/gen/has_static_member_function_template_gen.hpp + $(here)/../include/boost/tti/gen/has_template_gen.hpp + $(here)/../include/boost/tti/gen/has_type_gen.hpp + $(here)/../include/boost/tti/gen/has_union_gen.hpp + $(here)/../include/boost/tti/gen/member_type_gen.hpp + $(here)/../include/boost/tti/gen/namespace_gen.hpp + : PROJECT_NAME="TTI" PROJECT_NUMBER=1 SORT_MEMBER_DOCS=NO @@ -94,7 +94,7 @@ boostbook standalone chunk.section.depth=8 # How far down we chunk nested sections, basically all of them. toc.section.depth=8 # How far down sections get TOCs. toc.max.depth=4 # Max depth in each TOC. - + # PDF Options: # TOC Generation: this is needed for FOP-0.9 and later: fop1.extensions=0 From d4c0dcf869962a603340708b125a4abc6a182235 Mon Sep 17 00:00:00 2001 From: Rene Rivera Date: Fri, 9 Aug 2024 22:35:19 -0500 Subject: [PATCH 8/8] Update build deps. --- test/Jamfile.v2 | 135 ++++++++++++++++++++++++------------------------ 1 file changed, 68 insertions(+), 67 deletions(-) diff --git a/test/Jamfile.v2 b/test/Jamfile.v2 index 505c90d..5e7de79 100644 --- a/test/Jamfile.v2 +++ b/test/Jamfile.v2 @@ -24,8 +24,9 @@ project tti_tests : requirements on gcc-4.6.3:-Wno-variadic-macros gcc-4.7.0:-Wno-variadic-macros gcc-4.7.2:-Wno-variadic-macros + /boost/tti//boost_tti ; - + obj function_template : test_function_template_works.cpp ; explicit function_template ; @@ -160,13 +161,13 @@ alias ttifun ; # -# Member function templates +# Member function templates # alias ttimftmp : [ run test_has_mem_fun_template.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_mem_fun_template.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_mem_fun_template_nov ] [ compile test_has_mem_fun_template_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_mem_fun_template_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -181,7 +182,7 @@ alias ttimftsig : [ run test_has_member_template.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_member_template.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_member_template_nov ] [ compile test_has_member_template_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_member_template_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -196,7 +197,7 @@ alias ttimftmpcv : [ run test_has_mem_fun_template_cv.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_mem_fun_template_cv.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_mem_fun_template_cv_nov ] [ compile test_has_mem_fun_template_cv_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_mem_fun_template_cv_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -211,7 +212,7 @@ alias ttimftsigcv : [ run test_has_member_template_cv.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_member_template_cv.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_member_template_cv_nov ] [ compile test_has_member_template_cv_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_member_template_cv_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -220,13 +221,13 @@ alias ttimftsigcv ; # -# Static member function templates +# Static member function templates # alias ttismftmp : [ run test_has_static_mem_fun_template.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_static_mem_fun_template.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_static_mem_fun_template_nov ] [ compile test_has_static_mem_fun_template_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_static_mem_fun_template_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -240,7 +241,7 @@ alias ttismftsig : [ run test_has_static_member_template.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_static_member_template.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_static_member_template_nov ] [ compile test_has_static_member_template_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_static_member_template_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -254,7 +255,7 @@ alias ttifuntmp : [ run test_has_fun_template.cpp : : : [ check-target-builds function_template : : no ] ] [ run test_has_fun_template.cpp : : : [ check-target-builds function_template : : no ] - BOOST_PP_VARIADICS=0 : + BOOST_PP_VARIADICS=0 : test_has_fun_template_nov ] [ compile test_has_fun_template_compile.cpp : [ check-target-builds function_template : : no ] ] [ compile-fail test_has_fun_template_fail.cpp : [ check-target-builds function_template : : no ] ] @@ -292,7 +293,7 @@ alias ttitmpcp [ compile-fail test_has_template_cp_fail3.cpp : BOOST_PP_VARIADICS=0 ] [ compile-fail test_has_template_cp_fail4.cpp : BOOST_PP_VARIADICS=0 ] ; - + # # Type # @@ -328,207 +329,207 @@ alias ttimemty # alias ttinovm : ttimfsig ttimfsigcv ttimd ttimfn ttimfncv ttismfsig ttismd ttismfn ttidata ttifun ttitmp ttitmpcp ttity ttimemty ttift ; -alias ttitmpv : : +alias ttitmpv : : gcc 3.4.2 ; - -alias ttitmpv : : + +alias ttitmpv : : gcc 3.4.5 ; - -alias ttitmpv : : + +alias ttitmpv : : gcc 4.1.2 ; - -alias ttitmpv : : + +alias ttitmpv : : gcc 4.2.1 ; - + # # Templates, variadic macro # alias ttitmpv : - [ run test_has_template.cpp : : : + [ run test_has_template.cpp : : : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_v ] - [ compile test_has_template_compile.cpp : + [ compile test_has_template_compile.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_compile_v ] - [ compile-fail test_has_template_fail.cpp : + [ compile-fail test_has_template_fail.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_fail_v ] - [ compile-fail test_has_template_fail2.cpp : + [ compile-fail test_has_template_fail2.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_fail2_v ] - [ compile-fail test_has_template_fail3.cpp : + [ compile-fail test_has_template_fail3.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_fail3_v ] - [ compile-fail test_has_template_fail4.cpp : + [ compile-fail test_has_template_fail4.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_fail4_v ] ; -alias ttitmpcpv : : +alias ttitmpcpv : : gcc 3.4.2 ; - -alias ttitmpcpv : : + +alias ttitmpcpv : : gcc 3.4.5 ; - -alias ttitmpcpv : : + +alias ttitmpcpv : : gcc 4.1.2 ; - -alias ttitmpcpv : : + +alias ttitmpcpv : : gcc 4.2.1 ; - + # # Templates, variadic macro, check params, non-variadic syntax # alias ttitmpcpv : - [ run test_has_template_cp.cpp : : : + [ run test_has_template_cp.cpp : : : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_v ] - [ compile test_has_template_cp_compile.cpp : + [ compile test_has_template_cp_compile.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_compile_v ] - [ compile-fail test_has_template_cp_fail.cpp : + [ compile-fail test_has_template_cp_fail.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_fail_v ] - [ compile-fail test_has_template_cp_fail2.cpp : + [ compile-fail test_has_template_cp_fail2.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_fail2_v ] - [ compile-fail test_has_template_cp_fail3.cpp : + [ compile-fail test_has_template_cp_fail3.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_fail3_v ] - [ compile-fail test_has_template_cp_fail4.cpp : + [ compile-fail test_has_template_cp_fail4.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ - BOOST_PP_VARIADICS=1 : + BOOST_PP_VARIADICS=1 : test_has_template_cp_fail4_v ] ; - -alias ttitmpcpvm : : + +alias ttitmpcpvm : : gcc 3.4.2 ; - -alias ttitmpcpvm : : + +alias ttitmpcpvm : : gcc 3.4.5 ; - -alias ttitmpcpvm : : + +alias ttitmpcpvm : : gcc 4.1.2 ; - -alias ttitmpcpvm : : + +alias ttitmpcpvm : : gcc 4.2.1 ; - + # # Templates, variadic macro, check params, variadic syntax # alias ttitmpcpvm : - [ run test_vm_has_template_cp.cpp : : : + [ run test_vm_has_template_cp.cpp : : : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] - [ compile test_vm_has_template_cp_compile.cpp : + [ compile test_vm_has_template_cp_compile.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] - [ compile-fail test_vm_has_template_cp_fail.cpp : + [ compile-fail test_vm_has_template_cp_fail.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] - [ compile-fail test_vm_has_template_cp_fail2.cpp : + [ compile-fail test_vm_has_template_cp_fail2.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] - [ compile-fail test_vm_has_template_cp_fail3.cpp : + [ compile-fail test_vm_has_template_cp_fail3.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] - [ compile-fail test_vm_has_template_cp_fail4.cpp : + [ compile-fail test_vm_has_template_cp_fail4.cpp : gcc:-std=c++0x gcc-4.3.0:-U__STRICT_ANSI__ gcc-4.4.0:-U__STRICT_ANSI__ gcc-4.4.7:-U__STRICT_ANSI__ BOOST_PP_VARIADICS=1 ] ; - + # # Templates, non-variadic macro #