Skip to content

Commit

Permalink
Fixed another stupid error.
Browse files Browse the repository at this point in the history
[SVN r33318]
  • Loading branch information
hkaiser committed Mar 11, 2006
1 parent 8773a3b commit 2da3dac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions samples/cpp_tokens/slex_token.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -69,9 +69,9 @@ class slex_token
// debug support
#if BOOST_WAVE_DUMP_PARSE_TREE != 0
// access functions for the tree_to_xml functionality
static int get_token_id(lex_token const &t)
static int get_token_id(slex_token const &t)
{ return ID_FROM_TOKEN(token_id(t)); }
static string_type get_token_value(lex_token const &t)
static string_type get_token_value(slex_token const &t)
{ return t.get_value(); }
#endif

Expand Down

0 comments on commit 2da3dac

Please sign in to comment.