From fdcd8439c08c2239110d73d9ffb211ffabf3919a Mon Sep 17 00:00:00 2001 From: Glen Fernandes Date: Wed, 18 Dec 2019 08:40:35 -0500 Subject: [PATCH] BOOST_ prefix include guard macro --- include/boost/shared_container_iterator.hpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/boost/shared_container_iterator.hpp b/include/boost/shared_container_iterator.hpp index e803bd6..8adcaf7 100644 --- a/include/boost/shared_container_iterator.hpp +++ b/include/boost/shared_container_iterator.hpp @@ -5,8 +5,8 @@ // See http://www.boost.org/libs/utility/shared_container_iterator.html for documentation. -#ifndef SHARED_CONTAINER_ITERATOR_RG08102002_HPP -#define SHARED_CONTAINER_ITERATOR_RG08102002_HPP +#ifndef BOOST_SHARED_CONTAINER_ITERATOR_HPP +#define BOOST_SHARED_CONTAINER_ITERATOR_HPP #include "boost/iterator_adaptors.hpp" #include "boost/shared_ptr.hpp" @@ -66,4 +66,4 @@ using iterators::make_shared_container_range; } // namespace boost -#endif // SHARED_CONTAINER_ITERATOR_RG08102002_HPP +#endif