Boost logo

Boost-Commit :

From: hartmut.kaiser_at_[hidden]
Date: 2007-09-13 17:54:33


Author: hkaiser
Date: 2007-09-13 17:54:32 EDT (Thu, 13 Sep 2007)
New Revision: 39251
URL: http://svn.boost.org/trac/boost/changeset/39251

Log:
Wave: Fixed a bug in the Slex token class, which was the reason for some failing tests lately
Text files modified:
   trunk/libs/wave/samples/cpp_tokens/slex_token.hpp | 2 +-
   1 files changed, 1 insertions(+), 1 deletions(-)

Modified: trunk/libs/wave/samples/cpp_tokens/slex_token.hpp
==============================================================================
--- trunk/libs/wave/samples/cpp_tokens/slex_token.hpp (original)
+++ trunk/libs/wave/samples/cpp_tokens/slex_token.hpp 2007-09-13 17:54:32 EDT (Thu, 13 Sep 2007)
@@ -55,7 +55,7 @@
     operator token_id() const { return id; }
     string_type const &get_value() const { return value; }
     position_type const &get_position() const { return pos; }
- bool is_eoi() const { id == T_EOI; }
+ bool is_eoi() const { return id == T_EOI; }
 
     void set_token_id (token_id id_) { id = id_; }
     void set_value (string_type const &newval) { value = newval; }


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