|
Boost-Commit : |
Subject: [Boost-commit] svn:boost r65057 - trunk/libs/spirit/example/qi
From: hartmut.kaiser_at_[hidden]
Date: 2010-08-27 14:06:24
Author: hkaiser
Date: 2010-08-27 14:06:24 EDT (Fri, 27 Aug 2010)
New Revision: 65057
URL: http://svn.boost.org/trac/boost/changeset/65057
Log:
Spirit: updating comments
Text files modified:
trunk/libs/spirit/example/qi/custom_string.cpp | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
Modified: trunk/libs/spirit/example/qi/custom_string.cpp
==============================================================================
--- trunk/libs/spirit/example/qi/custom_string.cpp (original)
+++ trunk/libs/spirit/example/qi/custom_string.cpp 2010-08-27 14:06:24 EDT (Fri, 27 Aug 2010)
@@ -18,13 +18,13 @@
namespace boost { namespace spirit { namespace traits
{
- // make Qi recognize QString as a container
+ // Make Qi recognize QString as a container
template <> struct is_container<QString> : mpl::true_ {};
- // Expose QStrings value_type
+ // Expose the container's (QString's) value_type
template <> struct container_value<QString> : mpl::identity<QChar> {};
- // Define, how to insert a new element at the end of the container
+ // Define how to insert a new element at the end of the container (QString)
template <>
struct push_back_container<QString, QChar>
{
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