Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r53085 - in trunk/boost/spirit/home: karma/nonterminal qi/nonterminal
From: hartmut.kaiser_at_[hidden]
Date: 2009-05-18 09:43:51


Author: hkaiser
Date: 2009-05-18 09:43:50 EDT (Mon, 18 May 2009)
New Revision: 53085
URL: http://svn.boost.org/trac/boost/changeset/53085

Log:
Spirit: added missing header file
Text files modified:
   trunk/boost/spirit/home/karma/nonterminal/rule.hpp | 3 ++-
   trunk/boost/spirit/home/qi/nonterminal/rule.hpp | 3 ++-
   2 files changed, 4 insertions(+), 2 deletions(-)

Modified: trunk/boost/spirit/home/karma/nonterminal/rule.hpp
==============================================================================
--- trunk/boost/spirit/home/karma/nonterminal/rule.hpp (original)
+++ trunk/boost/spirit/home/karma/nonterminal/rule.hpp 2009-05-18 09:43:50 EDT (Mon, 18 May 2009)
@@ -11,6 +11,7 @@
 #pragma once
 #endif
 
+#include <boost/assert.hpp>
 #include <boost/function.hpp>
 #include <boost/mpl/eval_if.hpp>
 #include <boost/function_types/result_type.hpp>
@@ -186,7 +187,7 @@
 
         rule& operator=(rule const& rhs)
         {
- // The following assertion fires when you try to initialize a rule
+ // The following assertion fires when you try to initialize a rule
             // from an uninitialized one. Did you mean to refer to the right
             // hand side rule instead of assigning from it? In this case you
             // should write lhs = rhs.alias();

Modified: trunk/boost/spirit/home/qi/nonterminal/rule.hpp
==============================================================================
--- trunk/boost/spirit/home/qi/nonterminal/rule.hpp (original)
+++ trunk/boost/spirit/home/qi/nonterminal/rule.hpp 2009-05-18 09:43:50 EDT (Mon, 18 May 2009)
@@ -11,6 +11,7 @@
 #pragma once
 #endif
 
+#include <boost/assert.hpp>
 #include <boost/function.hpp>
 #include <boost/mpl/eval_if.hpp>
 #include <boost/function_types/result_type.hpp>
@@ -183,7 +184,7 @@
 
         rule& operator=(rule const& rhs)
         {
- // The following assertion fires when you try to initialize a rule
+ // The following assertion fires when you try to initialize a rule
             // from an uninitialized one. Did you mean to refer to the right
             // hand side rule instead of assigning from it? In this case you
             // should write lhs = rhs.alias();


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