Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r69862 - in sandbox/tti: boost/tti boost/tti/gen boost/tti/mf libs/tti/test
From: eldiener_at_[hidden]
Date: 2011-03-11 18:33:43


Author: eldiener
Date: 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
New Revision: 69862
URL: http://svn.boost.org/trac/boost/changeset/69862

Log:
Use namespace macro.
Added:
   sandbox/tti/boost/tti/gen/namespace_gen.hpp (contents, props changed)
Text files modified:
   sandbox/tti/boost/tti/comp_mem_fun.hpp | 4 ++--
   sandbox/tti/boost/tti/comp_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/comp_static_mem_fun.hpp | 4 ++--
   sandbox/tti/boost/tti/comp_static_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/comp_mem_fun_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/comp_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/comp_static_mem_fun_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/comp_static_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/mem_data_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/mem_fun_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/mem_type_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/static_mem_data_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/static_mem_fun_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/static_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/template_params_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/trait_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/type_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/vm_comp_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/vm_comp_static_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/vm_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/vm_static_mem_fun_template_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/gen/vm_template_params_gen.hpp | 4 ++--
   sandbox/tti/boost/tti/mem_data.hpp | 4 ++--
   sandbox/tti/boost/tti/mem_fun.hpp | 4 ++--
   sandbox/tti/boost/tti/mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/mem_type.hpp | 12 ++++++------
   sandbox/tti/boost/tti/mf/mf_mem_fun.hpp | 3 ++-
   sandbox/tti/boost/tti/mf/mf_mem_fun_template.hpp | 3 ++-
   sandbox/tti/boost/tti/mf/mf_mem_type.hpp | 5 +++--
   sandbox/tti/boost/tti/mf/mf_static_mem_fun.hpp | 3 ++-
   sandbox/tti/boost/tti/mf/mf_static_mem_fun_template.hpp | 3 ++-
   sandbox/tti/boost/tti/mf/mf_type.hpp | 3 ++-
   sandbox/tti/boost/tti/static_mem_data.hpp | 4 ++--
   sandbox/tti/boost/tti/static_mem_fun.hpp | 4 ++--
   sandbox/tti/boost/tti/static_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/template.hpp | 4 ++--
   sandbox/tti/boost/tti/template_params.hpp | 4 ++--
   sandbox/tti/boost/tti/type.hpp | 12 ++++++------
   sandbox/tti/boost/tti/vm_comp_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/vm_comp_static_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/vm_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/vm_static_mem_fun_template.hpp | 4 ++--
   sandbox/tti/boost/tti/vm_template_params.hpp | 4 ++--
   sandbox/tti/libs/tti/test/Jamfile.v2 | 1 -
   46 files changed, 99 insertions(+), 94 deletions(-)

Modified: sandbox/tti/boost/tti/comp_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/comp_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/comp_mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -46,7 +46,7 @@
       } \
     template<class T> \
     struct trait : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
       { \
       }; \
     } \
@@ -85,7 +85,7 @@
       { \
       template<class T> \
       struct apply : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/comp_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/comp_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/comp_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -52,7 +52,7 @@
       } \
     template<class T> \
     struct trait : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
       { \
       }; \
     } \
@@ -94,7 +94,7 @@
       { \
       template<class T> \
       struct apply : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/comp_static_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/comp_static_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/comp_static_mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -49,7 +49,7 @@
       } \
     template<class T,class Type> \
     struct trait : \
- boost::tti::detail::trait<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,Type> \
       { \
       }; \
     } \
@@ -91,7 +91,7 @@
       { \
       template<class T,class Type> \
       struct apply : \
- boost::tti::detail::trait::apply<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait::apply<T,Type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/comp_static_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/comp_static_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/comp_static_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -56,7 +56,7 @@
       } \
     template<class T,class Type> \
     struct trait : \
- boost::tti::detail::trait<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,Type> \
       { \
       }; \
     } \
@@ -102,7 +102,7 @@
       { \
       template<class T,class Type> \
       struct apply : \
- boost::tti::detail::trait::apply<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait::apply<T,Type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/gen/comp_mem_fun_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/comp_mem_fun_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/comp_mem_fun_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #endif // TTI_COMP_MEM_FUN_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/comp_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/comp_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/comp_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_COMP_MEM_FUN_TEMPLATE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/comp_static_mem_fun_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/comp_static_mem_fun_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/comp_static_mem_fun_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #endif // TTI_COMP_STATIC_MEM_FUN_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/comp_static_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/comp_static_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/comp_static_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_COMP_STATIC_MEM_FUN_TEMPLATE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/mem_data_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/mem_data_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/mem_data_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_MEMBER_DATA_GEN(name) \
- boost::tti::BOOST_TTI_HAS_MEMBER_DATA_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_MEMBER_DATA_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_MEMBER_DATA_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_MEMBER_DATA_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_MEMBER_DATA_GEN_BASE(name) \
 /**/
 
 #endif // TTI_MEMBER_DATA_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/mem_fun_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/mem_fun_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/mem_fun_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_HAS_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #endif // TTI_MEMBER_FUNCTION_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_MEMBER_FUNCTION_TEMPLATE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/mem_type_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/mem_type_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/mem_type_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_MEMBER_TYPE_GEN(name) \
- boost::tti::BOOST_TTI_MEMBER_TYPE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MEMBER_TYPE_GEN_BASE(name) \
 /**/
   
 #define BOOST_TTI_MTFC_MEMBER_TYPE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_MEMBER_TYPE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_MEMBER_TYPE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_MEMBER_TYPE_GEN_HPP

Added: sandbox/tti/boost/tti/gen/namespace_gen.hpp
==============================================================================
--- (empty file)
+++ sandbox/tti/boost/tti/gen/namespace_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -0,0 +1,6 @@
+#if !defined(TTI_NAMESPACE_GEN_HPP)
+#define TTI_NAMESPACE_GEN_HPP
+
+#define BOOST_TTI_NAMESPACE boost::tti
+
+#endif // TTI_NAMESPACE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/static_mem_data_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/static_mem_data_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/static_mem_data_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN(name) \
- boost::tti::BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_STATIC_MEMBER_DATA_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_STATIC_MEMBER_DATA_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_DATA_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_DATA_GEN_BASE(name) \
 /**/
 
 #endif // TTI_STATIC_MEMBER_DATA_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/static_mem_fun_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/static_mem_fun_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/static_mem_fun_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_GEN_BASE(name) \
 /**/
 
 #endif // TTI_STATIC_MEMBER_FUNCTION_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/static_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/static_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/static_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_STATIC_MEM_FUN_TEMPLATE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_TEMPLATE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/template_params_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/template_params_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/template_params_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_TEMPLATE_CHECK_PARAMS_GEN(name) \
- boost::tti::BOOST_TTI_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
 /**/
 
 #endif // TTI_TEMPLATE_PARAMS_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/trait_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/trait_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/trait_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -1,14 +1,14 @@
 #if !defined(TTI_TRAIT_GEN_HPP)
 #define TTI_TRAIT_GEN_HPP
 
-#include <boost/config.hpp>
+#include "namespace_gen.hpp"
 
 #define BOOST_TTI_TRAIT_GEN_BASE(name) \
   name \
 /**/
 
 #define BOOST_TTI_TRAIT_GEN(name) \
- boost::tti::BOOST_TTI_TRAIT_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_TRAIT_GEN_BASE(name) \
 /**/
 
 #endif // TTI_TRAIT_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/type_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/type_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/type_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -14,11 +14,11 @@
 /**/
 
 #define BOOST_TTI_HAS_TYPE_GEN(name) \
- boost::tti::BOOST_TTI_HAS_TYPE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_HAS_TYPE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_MTFC_HAS_TYPE_GEN(name) \
- boost::tti::BOOST_TTI_MTFC_HAS_TYPE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_MTFC_HAS_TYPE_GEN_BASE(name) \
 /**/
 
 #endif // TTI_TYPE_GEN_HPP

Modified: sandbox/tti/boost/tti/gen/vm_comp_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/vm_comp_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/vm_comp_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -17,11 +17,11 @@
 /**/
 
 #define BOOST_TTI_VM_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_VM_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_MTFC_HAS_COMP_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // !defined(BOOST_NO_VARIADIC_MACROS)

Modified: sandbox/tti/boost/tti/gen/vm_comp_static_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/vm_comp_static_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/vm_comp_static_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -17,11 +17,11 @@
 /**/
 
 #define BOOST_TTI_VM_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_VM_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_MTFC_HAS_COMP_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // !defined(BOOST_NO_VARIADIC_MACROS)

Modified: sandbox/tti/boost/tti/gen/vm_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/vm_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/vm_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -17,11 +17,11 @@
 /**/
 
 #define BOOST_TTI_VM_HAS_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_VM_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_MTFC_HAS_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // !defined(BOOST_NO_VARIADIC_MACROS)

Modified: sandbox/tti/boost/tti/gen/vm_static_mem_fun_template_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/vm_static_mem_fun_template_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/vm_static_mem_fun_template_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -17,11 +17,11 @@
 /**/
 
 #define BOOST_TTI_VM_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_VM_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN(name) \
- boost::tti::BOOST_TTI_VM_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_MTFC_HAS_STATIC_MEMBER_FUNCTION_TEMPLATE_GEN_BASE(name) \
 /**/
 
 #endif // !defined(BOOST_NO_VARIADIC_MACROS)

Modified: sandbox/tti/boost/tti/gen/vm_template_params_gen.hpp
==============================================================================
--- sandbox/tti/boost/tti/gen/vm_template_params_gen.hpp (original)
+++ sandbox/tti/boost/tti/gen/vm_template_params_gen.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -17,11 +17,11 @@
 /**/
 
 #define BOOST_TTI_VM_HAS_TEMPLATE_CHECK_PARAMS_GEN(name) \
- boost::tti::BOOST_TTI_VM_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
 /**/
 
 #define BOOST_TTI_VM_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN(name) \
- boost::tti::BOOST_TTI_VM_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
+ BOOST_TTI_NAMESPACE::BOOST_TTI_VM_MTFC_HAS_TEMPLATE_CHECK_PARAMS_GEN_BASE(name) \
 /**/
 
 #endif // !defined(BOOST_NO_VARIADIC_MACROS)

Modified: sandbox/tti/boost/tti/mem_data.hpp
==============================================================================
--- sandbox/tti/boost/tti/mem_data.hpp (original)
+++ sandbox/tti/boost/tti/mem_data.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -46,7 +46,7 @@
       } \
     template<class T,class R> \
     struct trait : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmd<T,R>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmd<T,R>::type,typename boost::remove_const<T>::type> \
       { \
       }; \
     } \
@@ -85,7 +85,7 @@
       { \
       template<class T,class R> \
       struct apply : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmd<T,R>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmd<T,R>::type,typename boost::remove_const<T>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -52,7 +52,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
       { \
       }; \
     } \
@@ -95,7 +95,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -59,7 +59,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
       { \
       }; \
     } \
@@ -106,7 +106,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/mem_type.hpp
==============================================================================
--- sandbox/tti/boost/tti/mem_type.hpp (original)
+++ sandbox/tti/boost/tti/mem_type.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -54,9 +54,9 @@
     struct trait : \
       boost::mpl::eval_if \
         < \
- boost::tti::detail::trait<T>, \
- boost::tti::detail::member_type::trait<T>, \
- boost::mpl::identity<boost::tti::detail::notype> \
+ BOOST_TTI_NAMESPACE::detail::trait<T>, \
+ BOOST_TTI_NAMESPACE::detail::member_type::trait<T>, \
+ boost::mpl::identity<BOOST_TTI_NAMESPACE::detail::notype> \
> \
       { \
       }; \
@@ -102,9 +102,9 @@
       struct apply : \
         boost::mpl::eval_if \
           < \
- boost::tti::detail::trait<T>, \
- boost::tti::detail::member_type::trait<T>, \
- boost::mpl::identity<boost::tti::detail::notype> \
+ BOOST_TTI_NAMESPACE::detail::trait<T>, \
+ BOOST_TTI_NAMESPACE::detail::member_type::trait<T>, \
+ boost::mpl::identity<BOOST_TTI_NAMESPACE::detail::notype> \
> \
         { \
         }; \

Modified: sandbox/tti/boost/tti/mf/mf_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -8,6 +8,7 @@
 #include <boost/mpl/placeholders.hpp>
 #include <boost/mpl/transform.hpp>
 #include <boost/mpl/vector.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dtself.hpp"
 
 /*
@@ -63,7 +64,7 @@
         HasMemberFunction,
         typename T::type,
         typename R::type,
- typename boost::mpl::transform<FS,boost::tti::detail::tself<boost::mpl::_1> >::type,
+ typename boost::mpl::transform<FS,BOOST_TTI_NAMESPACE::detail::tself<boost::mpl::_1> >::type,
         TAG
>::type
       {

Modified: sandbox/tti/boost/tti/mf/mf_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -8,6 +8,7 @@
 #include <boost/mpl/placeholders.hpp>
 #include <boost/mpl/transform.hpp>
 #include <boost/mpl/vector.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dtself.hpp"
 
 /*
@@ -63,7 +64,7 @@
         HasMemberFunctionTemplate,
         typename T::type,
         typename R::type,
- typename boost::mpl::transform<FS,boost::tti::detail::tself<boost::mpl::_1> >::type,
+ typename boost::mpl::transform<FS,BOOST_TTI_NAMESPACE::detail::tself<boost::mpl::_1> >::type,
         TAG
>::type
       {

Modified: sandbox/tti/boost/tti/mf/mf_mem_type.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_mem_type.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_mem_type.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -7,6 +7,7 @@
 #include <boost/mpl/not.hpp>
 #include <boost/mpl/placeholders.hpp>
 #include <boost/type_traits/is_same.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dnotype.hpp"
 
 /*
@@ -43,7 +44,7 @@
         boost::is_same
           <
           T,
- boost::tti::detail::notype
+ BOOST_TTI_NAMESPACE::detail::notype
>
>
       {
@@ -69,7 +70,7 @@
         boost::is_same
           <
           typename T::type,
- boost::tti::detail::notype
+ BOOST_TTI_NAMESPACE::detail::notype
>
>
       {

Modified: sandbox/tti/boost/tti/mf/mf_static_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_static_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_static_mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -8,6 +8,7 @@
 #include <boost/mpl/placeholders.hpp>
 #include <boost/mpl/transform.hpp>
 #include <boost/mpl/vector.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dtself.hpp"
 
 /*
@@ -61,7 +62,7 @@
         HasStaticMemberFunction,
         typename T::type,
         typename R::type,
- typename boost::mpl::transform<FS,boost::tti::detail::tself<boost::mpl::_1> >::type,
+ typename boost::mpl::transform<FS,BOOST_TTI_NAMESPACE::detail::tself<boost::mpl::_1> >::type,
         TAG
>::type
       {

Modified: sandbox/tti/boost/tti/mf/mf_static_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_static_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_static_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -8,6 +8,7 @@
 #include <boost/mpl/placeholders.hpp>
 #include <boost/mpl/transform.hpp>
 #include <boost/mpl/vector.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dtself.hpp"
 
 /*
@@ -61,7 +62,7 @@
         HasStaticMemberFunctionTemplate,
         typename T::type,
         typename R::type,
- typename boost::mpl::transform<FS,boost::tti::detail::tself<boost::mpl::_1> >::type,
+ typename boost::mpl::transform<FS,BOOST_TTI_NAMESPACE::detail::tself<boost::mpl::_1> >::type,
         TAG
>::type
       {

Modified: sandbox/tti/boost/tti/mf/mf_type.hpp
==============================================================================
--- sandbox/tti/boost/tti/mf/mf_type.hpp (original)
+++ sandbox/tti/boost/tti/mf/mf_type.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -5,6 +5,7 @@
 #include <boost/mpl/apply.hpp>
 #include <boost/mpl/identity.hpp>
 #include <boost/mpl/placeholders.hpp>
+#include "../gen/namespace_gen.hpp"
 #include "../detail/dnotype.hpp"
 
 /*
@@ -45,7 +46,7 @@
       <
       class HasType,
       class T,
- class U = boost::mpl::identity<boost::tti::detail::notype>
+ class U = boost::mpl::identity<BOOST_TTI_NAMESPACE::detail::notype>
>
     struct mf_has_type :
       boost::mpl::apply

Modified: sandbox/tti/boost/tti/static_mem_data.hpp
==============================================================================
--- sandbox/tti/boost/tti/static_mem_data.hpp (original)
+++ sandbox/tti/boost/tti/static_mem_data.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -48,7 +48,7 @@
       } \
     template<class T,class Type> \
     struct trait : \
- boost::tti::detail::trait<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,Type> \
       { \
       }; \
     } \
@@ -90,7 +90,7 @@
       { \
       template<class T,class Type> \
       struct apply : \
- boost::tti::detail::trait::apply<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait::apply<T,Type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/static_mem_fun.hpp
==============================================================================
--- sandbox/tti/boost/tti/static_mem_fun.hpp (original)
+++ sandbox/tti/boost/tti/static_mem_fun.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -52,7 +52,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
       { \
       }; \
     } \
@@ -95,7 +95,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/static_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/static_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/static_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -59,7 +59,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
       { \
       }; \
     } \
@@ -106,7 +106,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/template.hpp
==============================================================================
--- sandbox/tti/boost/tti/template.hpp (original)
+++ sandbox/tti/boost/tti/template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -45,7 +45,7 @@
       } \
     template<class T> \
     struct trait : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
       { \
       }; \
     } \
@@ -84,7 +84,7 @@
       { \
       template<class T> \
       struct apply : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/template_params.hpp
==============================================================================
--- sandbox/tti/boost/tti/template_params.hpp (original)
+++ sandbox/tti/boost/tti/template_params.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -48,7 +48,7 @@
       } \
     template<class T> \
     struct trait : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
       { \
       }; \
     } \
@@ -90,7 +90,7 @@
       { \
       template<class T> \
       struct apply : \
- boost::tti::detail::trait::apply<T> \
+ BOOST_TTI_NAMESPACE::detail::trait::apply<T> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/type.hpp
==============================================================================
--- sandbox/tti/boost/tti/type.hpp (original)
+++ sandbox/tti/boost/tti/type.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -45,13 +45,13 @@
       { \
       TTI_DETAIL_TRAIT_HAS_TYPE(trait,name) \
       } \
- template<class T,class U = boost::tti::detail::notype> \
+ template<class T,class U = BOOST_TTI_NAMESPACE::detail::notype> \
     struct trait : \
- boost::tti::detail::trait \
+ BOOST_TTI_NAMESPACE::detail::trait \
         < \
         T, \
         U, \
- typename boost::tti::detail::ttimpl::trait<T>::type \
+ typename BOOST_TTI_NAMESPACE::detail::ttimpl::trait<T>::type \
> \
       { \
       }; \
@@ -90,13 +90,13 @@
       } \
     struct trait \
       { \
- template<class T,class U = boost::tti::detail::notype> \
+ template<class T,class U = BOOST_TTI_NAMESPACE::detail::notype> \
       struct apply : \
- boost::tti::detail::trait \
+ BOOST_TTI_NAMESPACE::detail::trait \
           < \
           T, \
           U, \
- typename boost::tti::detail::ttimpl::trait<T>::type \
+ typename BOOST_TTI_NAMESPACE::detail::ttimpl::trait<T>::type \
> \
         { \
         }; \

Modified: sandbox/tti/boost/tti/vm_comp_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/vm_comp_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/vm_comp_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -69,7 +69,7 @@
       } \
     template<class T> \
     struct trait : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
       { \
       }; \
     } \
@@ -124,7 +124,7 @@
       { \
       template<class T> \
       struct apply : \
- boost::tti::detail::trait<T> \
+ BOOST_TTI_NAMESPACE::detail::trait<T> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/vm_comp_static_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/vm_comp_static_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/vm_comp_static_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -73,7 +73,7 @@
       } \
     template<class T,class Type> \
     struct trait : \
- boost::tti::detail::trait<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,Type> \
       { \
       }; \
     } \
@@ -132,7 +132,7 @@
       { \
       template<class T,class Type> \
       struct apply : \
- boost::tti::detail::trait::apply<T,Type> \
+ BOOST_TTI_NAMESPACE::detail::trait::apply<T,Type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/vm_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/vm_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/vm_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -76,7 +76,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
       { \
       }; \
     } \
@@ -136,7 +136,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<typename boost::tti::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<typename BOOST_TTI_NAMESPACE::detail::ptmf_seq<T,R,FS,TAG>::type,typename boost::remove_const<T>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/vm_static_mem_fun_template.hpp
==============================================================================
--- sandbox/tti/boost/tti/vm_static_mem_fun_template.hpp (original)
+++ sandbox/tti/boost/tti/vm_static_mem_fun_template.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -76,7 +76,7 @@
       } \
     template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
     struct trait : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
       { \
       }; \
     } \
@@ -136,7 +136,7 @@
       { \
       template<class T,class R,class FS = boost::mpl::vector<>,class TAG = boost::function_types::null_tag> \
       struct apply : \
- boost::tti::detail::trait<T,typename boost::tti::detail::tfunction_seq<R,FS,TAG>::type> \
+ BOOST_TTI_NAMESPACE::detail::trait<T,typename BOOST_TTI_NAMESPACE::detail::tfunction_seq<R,FS,TAG>::type> \
         { \
         }; \
       }; \

Modified: sandbox/tti/boost/tti/vm_template_params.hpp
==============================================================================
--- sandbox/tti/boost/tti/vm_template_params.hpp (original)
+++ sandbox/tti/boost/tti/vm_template_params.hpp 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -50,7 +50,7 @@
     template<class T> \
     struct trait \
       { \
- typedef typename boost::tti::detail::trait<T>::type type; \
+ typedef typename BOOST_TTI_NAMESPACE::detail::trait<T>::type type; \
       \
       BOOST_STATIC_CONSTANT(bool,value=type::value); \
       }; \
@@ -92,7 +92,7 @@
       template<class T> \
       struct apply \
         { \
- typedef typename boost::tti::detail::trait::apply<T>::type type; \
+ typedef typename BOOST_TTI_NAMESPACE::detail::trait::apply<T>::type type; \
         \
         BOOST_STATIC_CONSTANT(bool,value=type::value); \
         }; \

Modified: sandbox/tti/libs/tti/test/Jamfile.v2
==============================================================================
--- sandbox/tti/libs/tti/test/Jamfile.v2 (original)
+++ sandbox/tti/libs/tti/test/Jamfile.v2 2011-03-11 18:33:36 EST (Fri, 11 Mar 2011)
@@ -133,7 +133,6 @@
         [ compile-fail test_mf_has_template_cp_fail3.cpp ]
         [ run test_mf_mem_type.cpp ]
         [ compile test_mf_mem_type_compile.cpp ]
-# [ run test_has_fun_template.cpp ]
     ;
 
 alias ttivm


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