Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r67185 - in sandbox/tti: boost/tti libs/tti/test
From: eldiener_at_[hidden]
Date: 2010-12-12 09:06:03


Author: eldiener
Date: 2010-12-12 09:05:59 EST (Sun, 12 Dec 2010)
New Revision: 67185
URL: http://svn.boost.org/trac/boost/changeset/67185

Log:
Updated header files
Text files modified:
   sandbox/tti/boost/tti/TTIntrospection.hpp | 6 ++++--
   sandbox/tti/boost/tti/TTIntrospectionVM.hpp | 2 +-
   sandbox/tti/libs/tti/test/TestStructs.hpp | 4 ++++
   3 files changed, 9 insertions(+), 3 deletions(-)

Modified: sandbox/tti/boost/tti/TTIntrospection.hpp
==============================================================================
--- sandbox/tti/boost/tti/TTIntrospection.hpp (original)
+++ sandbox/tti/boost/tti/TTIntrospection.hpp 2010-12-12 09:05:59 EST (Sun, 12 Dec 2010)
@@ -11,10 +11,12 @@
 #include <boost/mpl/identity.hpp>
 #include <boost/mpl/int.hpp>
 #include <boost/mpl/quote.hpp>
+#include <boost/preprocessor/arithmetic/add.hpp>
 #include <boost/preprocessor/cat.hpp>
 #include <boost/preprocessor/repetition/enum_params.hpp>
 #include <boost/preprocessor/repetition/enum_params_with_a_default.hpp>
-#include <boost/preprocessor/arithmetic/add.hpp>
+#include <boost/preprocessor/seq/enum.hpp>
+#include <boost/preprocessor/seq/size.hpp>
 #include <boost/type_traits/detail/yes_no_type.hpp>
 #include <boost/type_traits/is_same.hpp>
 #include <boost/type_traits/remove_const.hpp>
@@ -191,7 +193,7 @@
 #define TTI_HAS_TEMPLATE_CHECK_PARAMS(name,tpSeq) \
   TTI_TRAIT_HAS_TEMPLATE_CHECK_PARAMS \
   ( \
- BOOST_PP_CAT(has_template_check_,name), \
+ BOOST_PP_CAT(has_template_check_params_,name), \
   name, \
   tpSeq \
   ) \

Modified: sandbox/tti/boost/tti/TTIntrospectionVM.hpp
==============================================================================
--- sandbox/tti/boost/tti/TTIntrospectionVM.hpp (original)
+++ sandbox/tti/boost/tti/TTIntrospectionVM.hpp 2010-12-12 09:05:59 EST (Sun, 12 Dec 2010)
@@ -46,7 +46,7 @@
 #define TTI_VM_HAS_TEMPLATE_CHECK_PARAMS(name,...) \
   TTI_VM_TRAIT_HAS_TEMPLATE_CHECK_PARAMS \
   ( \
- BOOST_PP_CAT(has_template_check_,name), \
+ BOOST_PP_CAT(has_template_check_params_,name), \
   name, \
   __VA_ARGS__ \
   ) \

Modified: sandbox/tti/libs/tti/test/TestStructs.hpp
==============================================================================
--- sandbox/tti/libs/tti/test/TestStructs.hpp (original)
+++ sandbox/tti/libs/tti/test/TestStructs.hpp 2010-12-12 09:05:59 EST (Sun, 12 Dec 2010)
@@ -55,6 +55,10 @@
     
   // Template
   
+ template <class,class,class,class,class,class> struct SomeMemberTemplate { };
+ template <class,class,int,class,template <class> class InnerTemplate,class,long> struct ManyParameters { };
+ template <class,class,class,class> struct SimpleTMP { };
+
   // Data
   
   bool aMember;


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk