ndnboost: Also rename BOOST_ to NDNBOOST_
diff --git a/include/ndnboost/range/detail/const_iterator.hpp b/include/ndnboost/range/detail/const_iterator.hpp
index a23c25a..eb75292 100644
--- a/include/ndnboost/range/detail/const_iterator.hpp
+++ b/include/ndnboost/range/detail/const_iterator.hpp
@@ -8,8 +8,8 @@
// For more information, see http://www.boost.org/libs/range/
//
-#ifndef BOOST_RANGE_DETAIL_CONST_ITERATOR_HPP
-#define BOOST_RANGE_DETAIL_CONST_ITERATOR_HPP
+#ifndef NDNBOOST_RANGE_DETAIL_CONST_ITERATOR_HPP
+#define NDNBOOST_RANGE_DETAIL_CONST_ITERATOR_HPP
#include <ndnboost/range/detail/common.hpp>
#include <ndnboost/range/detail/remove_extent.hpp>
@@ -31,7 +31,7 @@
template< typename C >
struct pts
{
- typedef BOOST_RANGE_DEDUCED_TYPENAME C::const_iterator type;
+ typedef NDNBOOST_RANGE_DEDUCED_TYPENAME C::const_iterator type;
};
};
@@ -41,7 +41,7 @@
template< typename P >
struct pts
{
- typedef BOOST_RANGE_DEDUCED_TYPENAME P::first_type type;
+ typedef NDNBOOST_RANGE_DEDUCED_TYPENAME P::first_type type;
};
};
@@ -52,7 +52,7 @@
template< typename T >
struct pts
{
- typedef const BOOST_RANGE_DEDUCED_TYPENAME
+ typedef const NDNBOOST_RANGE_DEDUCED_TYPENAME
remove_extent<T>::type* type;
};
};
@@ -61,9 +61,9 @@
template< typename C >
class range_const_iterator
{
- typedef BOOST_DEDUCED_TYPENAME range_detail::range<C>::type c_type;
+ typedef NDNBOOST_DEDUCED_TYPENAME range_detail::range<C>::type c_type;
public:
- typedef BOOST_DEDUCED_TYPENAME range_detail::range_const_iterator_<c_type>::BOOST_NESTED_TEMPLATE pts<C>::type type;
+ typedef NDNBOOST_DEDUCED_TYPENAME range_detail::range_const_iterator_<c_type>::NDNBOOST_NESTED_TEMPLATE pts<C>::type type;
};
}