Update of /cvsroot/boost/boost/libs/wave/samples/list_includes/lexertl
In directory
sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv28799/libs/wave/samples/list_includes/lexertl
Modified Files:
lexertl_lexer.hpp
Log Message:
Wave: Updated lexertl lexer.
Index: lexertl_lexer.hpp
===================================================================
RCS file:
/cvsroot/boost/boost/libs/wave/samples/list_includes/lexertl/lexertl_lexer.hpp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- lexertl_lexer.hpp 30 Nov 2006 17:00:56 -0000 1.5
+++ lexertl_lexer.hpp 30 Nov 2006 23:34:52 -0000 1.6
@@ -412,7 +412,7 @@
catch (std::runtime_error const& e) {
string_type msg("lexertl initialization error: ");
msg += e.what();
- BOOST_WAVE_LEXER_THROW(boost::wave::cpplexer::lexing_exception,
+ BOOST_WAVE_LEXER_THROW(wave::cpplexer::lexing_exception,
unexpected_error, msg.c_str(),
pos.get_line(), pos.get_column(), pos.get_file().c_str());
}
@@ -498,8 +498,8 @@
case T_IDENTIFIER:
// test identifier characters for validity (throws if
// invalid chars found)
- if
(!boost::wave::need_no_character_validation(language)) {
- using
boost::wave::cpplexer::impl::validate_identifier_name;
+ if (!wave::need_no_character_validation(language)) {
+ using
wave::cpplexer::impl::validate_identifier_name;
validate_identifier_name(token_val,
pos.get_line(), pos.get_column(),
pos.get_file());
}
@@ -509,11 +509,11 @@
case T_CHARLIT:
// test literal characters for validity (throws if invalid
// chars found)
- if (boost::wave::need_convert_trigraphs(language)) {
+ if (wave::need_convert_trigraphs(language)) {
using wave::cpplexer::impl::convert_trigraphs;
token_val = convert_trigraphs(token_val);
}
- if
(!boost::wave::need_no_character_validation(language)) {
+ if (!wave::need_no_character_validation(language)) {
using wave::cpplexer::impl::validate_literal;
validate_literal(token_val,
pos.get_line(), pos.get_column(),
pos.get_file());
@@ -524,7 +524,7 @@
if (!wave::need_long_long(language)) {
// syntax error: not allowed in C++ mode
BOOST_WAVE_LEXER_THROW(
- boost::wave::cpplexer::lexing_exception,
+ wave::cpplexer::lexing_exception,
invalid_long_long_literal, token_val.c_str(),
pos.get_line(), pos.get_column(),
pos.get_file().c_str());
@@ -562,7 +562,7 @@
case T_COMPL_TRIGRAPH:
case T_POUND_TRIGRAPH:
case T_ANY_TRIGRAPH:
- if (boost::wave::need_convert_trigraphs(language))
+ if (wave::need_convert_trigraphs(language))
{
using wave::cpplexer::impl::convert_trigraph;
token_val = convert_trigraph(token_val);
-------------------------------------------------------------------------
Take Surveys. Earn Cash. Influence the Future of IT
Join SourceForge.net's Techsay panel and you'll get the chance to share your
opinions on IT & business topics through brief surveys - and earn cash
http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________
Boost-cvs mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/boost-cvs