ndnboost: Also rename BOOST_ to NDNBOOST_
diff --git a/include/ndnboost/preprocessor/logical/compl.hpp b/include/ndnboost/preprocessor/logical/compl.hpp
index 214d64c..e6b4c6c 100644
--- a/include/ndnboost/preprocessor/logical/compl.hpp
+++ b/include/ndnboost/preprocessor/logical/compl.hpp
@@ -9,28 +9,28 @@
 #
 # /* See http://www.boost.org for most recent version. */
 #
-# ifndef BOOST_PREPROCESSOR_LOGICAL_COMPL_HPP
-# define BOOST_PREPROCESSOR_LOGICAL_COMPL_HPP
+# ifndef NDNBOOST_PREPROCESSOR_LOGICAL_COMPL_HPP
+# define NDNBOOST_PREPROCESSOR_LOGICAL_COMPL_HPP
 #
 # include <ndnboost/preprocessor/config/config.hpp>
 #
-# /* BOOST_PP_COMPL */
+# /* NDNBOOST_PP_COMPL */
 #
-# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MWCC()
-#    define BOOST_PP_COMPL(x) BOOST_PP_COMPL_I(x)
+# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_MWCC()
+#    define NDNBOOST_PP_COMPL(x) NDNBOOST_PP_COMPL_I(x)
 # else
-#    define BOOST_PP_COMPL(x) BOOST_PP_COMPL_OO((x))
-#    define BOOST_PP_COMPL_OO(par) BOOST_PP_COMPL_I ## par
+#    define NDNBOOST_PP_COMPL(x) NDNBOOST_PP_COMPL_OO((x))
+#    define NDNBOOST_PP_COMPL_OO(par) NDNBOOST_PP_COMPL_I ## par
 # endif
 #
-# if ~BOOST_PP_CONFIG_FLAGS() & BOOST_PP_CONFIG_MSVC()
-#    define BOOST_PP_COMPL_I(x) BOOST_PP_COMPL_ ## x
+# if ~NDNBOOST_PP_CONFIG_FLAGS() & NDNBOOST_PP_CONFIG_MSVC()
+#    define NDNBOOST_PP_COMPL_I(x) NDNBOOST_PP_COMPL_ ## x
 # else
-#    define BOOST_PP_COMPL_I(x) BOOST_PP_COMPL_ID(BOOST_PP_COMPL_ ## x)
-#    define BOOST_PP_COMPL_ID(id) id
+#    define NDNBOOST_PP_COMPL_I(x) NDNBOOST_PP_COMPL_ID(NDNBOOST_PP_COMPL_ ## x)
+#    define NDNBOOST_PP_COMPL_ID(id) id
 # endif
 #
-# define BOOST_PP_COMPL_0 1
-# define BOOST_PP_COMPL_1 0
+# define NDNBOOST_PP_COMPL_0 1
+# define NDNBOOST_PP_COMPL_1 0
 #
 # endif