Boost logo

Boost-Commit :

From: hartmut.kaiser_at_[hidden]
Date: 2008-06-03 14:08:05


Author: hkaiser
Date: 2008-06-03 14:08:04 EDT (Tue, 03 Jun 2008)
New Revision: 46083
URL: http://svn.boost.org/trac/boost/changeset/46083

Log:
Wave: Fixed ticket #1985
Text files modified:
   trunk/libs/wave/samples/hannibal/translation_unit_parser.h | 6 +++---
   1 files changed, 3 insertions(+), 3 deletions(-)

Modified: trunk/libs/wave/samples/hannibal/translation_unit_parser.h
==============================================================================
--- trunk/libs/wave/samples/hannibal/translation_unit_parser.h (original)
+++ trunk/libs/wave/samples/hannibal/translation_unit_parser.h 2008-06-03 14:08:04 EDT (Tue, 03 Jun 2008)
@@ -34,8 +34,7 @@
         const char rule_type[],
         std::ostream &strm
         )
- :rule_type_( rule_type),
- strm_( strm)
+ : strm_( strm), rule_type_( rule_type)
     {
         // nop
     }
@@ -297,7 +296,8 @@
             HANNIBAL_REGISTER_RULE( string_literal);
             string_literal
                 = pattern_p( StringLiteralTokenType, TokenTypeMask)
-
+ ;
+
             HANNIBAL_REGISTER_RULE( boolean_literal);
             boolean_literal
                 = pattern_p( BoolLiteralTokenType, TokenTypeMask)


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