$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: jefffaust_at_[hidden]
Date: 2007-05-28 14:23:19
Author: jefffaust
Date: 2007-05-28 14:23:18 EDT (Mon, 28 May 2007)
New Revision: 4333
URL: http://svn.boost.org/trac/boost/changeset/4333
Log:
Add include guards.
Text files modified:
sandbox/explore/boost/explore/is_assoc_iter.hpp | 5 +++++
1 files changed, 5 insertions(+), 0 deletions(-)
Modified: sandbox/explore/boost/explore/is_assoc_iter.hpp
==============================================================================
--- sandbox/explore/boost/explore/is_assoc_iter.hpp (original)
+++ sandbox/explore/boost/explore/is_assoc_iter.hpp 2007-05-28 14:23:18 EDT (Mon, 28 May 2007)
@@ -9,6 +9,9 @@
//
//
+#ifndef STREAM_IS_ASSOC_ITER_INCLUDED
+#define STREAM_IS_ASSOC_ITER_INCLUDED
+
#include <boost/mpl/bool.hpp>
#include <boost/mpl/eval_if.hpp>
@@ -62,3 +65,5 @@
boost::mpl::false_
> {};
}
+
+#endif