ndnboost: Also rename BOOST_ to NDNBOOST_
diff --git a/include/ndnboost/function_types/function_type.hpp b/include/ndnboost/function_types/function_type.hpp
index bad90ba..3746214 100644
--- a/include/ndnboost/function_types/function_type.hpp
+++ b/include/ndnboost/function_types/function_type.hpp
@@ -6,8 +6,8 @@
 
 //------------------------------------------------------------------------------
 
-#ifndef BOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
-#define BOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
+#ifndef NDNBOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
+#define NDNBOOST_FT_FUNCTION_TYPE_HPP_INCLUDED
 
 #include <ndnboost/function_types/detail/synthesize.hpp>
 #include <ndnboost/function_types/detail/to_sequence.hpp>
@@ -19,10 +19,10 @@
     template<typename Types, typename Tag = null_tag> struct function_type
       : detail::synthesize_func<typename detail::to_sequence<Types>::type, Tag>
     {
-      BOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_type,(Types,Tag))
+      NDNBOOST_MPL_AUX_LAMBDA_SUPPORT(2,function_type,(Types,Tag))
     };
   }
-  BOOST_TT_AUX_TEMPLATE_ARITY_SPEC(2,function_types::function_type)
+  NDNBOOST_TT_AUX_TEMPLATE_ARITY_SPEC(2,function_types::function_type)
 }
 
 #endif