$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
From: chochlik_at_[hidden]
Date: 2008-06-20 08:39:00
Author: matus.chochlik
Date: 2008-06-20 08:39:00 EDT (Fri, 20 Jun 2008)
New Revision: 46553
URL: http://svn.boost.org/trac/boost/changeset/46553
Log:
minor bug fix
Text files modified:
sandbox/mirror/boost/mirror/meta_path/for_each.hpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Modified: sandbox/mirror/boost/mirror/meta_path/for_each.hpp
==============================================================================
--- sandbox/mirror/boost/mirror/meta_path/for_each.hpp (original)
+++ sandbox/mirror/boost/mirror/meta_path/for_each.hpp 2008-06-20 08:39:00 EDT (Fri, 20 Jun 2008)
@@ -27,7 +27,7 @@
void for_each(Functor f)
{
mpl::for_each<
- typename NodeSet::paths_and_nodes,
+ typename NodeSet::paths_and_nodes
>(f);
}
@@ -56,7 +56,7 @@
void for_each(boost::reference_wrapper<Functor> f_ref)
{
mpl::for_each<
- typename NodeSet::paths_and_nodes,
+ typename NodeSet::paths_and_nodes
>(f_ref);
}