From 01448d3373eb1370d223fbc1b62b61abe8623dd5 Mon Sep 17 00:00:00 2001 From: John Maddock Date: Mon, 1 Apr 2002 11:47:54 +0000 Subject: [PATCH] Added missing include guards. [SVN r13335] --- include/boost/detail/allocator.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/boost/detail/allocator.hpp b/include/boost/detail/allocator.hpp index 5196a87..a56228d 100644 --- a/include/boost/detail/allocator.hpp +++ b/include/boost/detail/allocator.hpp @@ -13,6 +13,9 @@ * */ +#ifndef BOOST_DETAIL_ALLOCATOR_HPP +#define BOOST_DETAIL_ALLOCATOR_HPP + #include #include #if defined(BOOST_NO_STDC_NAMESPACE) @@ -274,3 +277,4 @@ struct rebind_allocator #endif +#endif // include guard