|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r65116 - trunk/boost/spirit/home/support
From: hartmut.kaiser_at_[hidden]
Date: 2010-08-29 17:24:33
Author: hkaiser
Date: 2010-08-29 17:24:32 EDT (Sun, 29 Aug 2010)
New Revision: 65116
URL: http://svn.boost.org/trac/boost/changeset/65116
Log:
Spirit: fixed a couple of (potential) ADL problems
Text files modified:
trunk/boost/spirit/home/support/attributes.hpp | 10 +++++-----
1 files changed, 5 insertions(+), 5 deletions(-)
Modified: trunk/boost/spirit/home/support/attributes.hpp
==============================================================================
--- trunk/boost/spirit/home/support/attributes.hpp (original)
+++ trunk/boost/spirit/home/support/attributes.hpp 2010-08-29 17:24:32 EDT (Sun, 29 Aug 2010)
@@ -704,7 +704,7 @@
template <typename T>
void operator()(T& val) const
{
- clear(val);
+ spirit::traits::clear(val);
}
};
@@ -807,7 +807,7 @@
is_first = false;
else
out << ", ";
- print_attribute(out, val);
+ spirit::traits::print_attribute(out, val);
}
Out& out;
@@ -823,7 +823,7 @@
template <typename T>
void operator()(T const& val) const
{
- print_attribute(out, val);
+ spirit::traits::print_attribute(out, val);
}
Out& out;
@@ -871,7 +871,7 @@
if (!first)
out << ", ";
first = false;
- print_attribute(out, traits::deref(i));
+ spirit::traits::print_attribute(out, traits::deref(i));
}
}
out << ']';
@@ -904,7 +904,7 @@
static void call(Out& out, boost::optional<T> const& val)
{
if (val)
- print_attribute(out, *val);
+ spirit::traits::print_attribute(out, *val);
else
out << "<empty>";
}
Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk