|
Boost-Commit : |
From: eric_at_[hidden]
Date: 2008-08-04 19:43:19
Author: eric_niebler
Date: 2008-08-04 19:43:18 EDT (Mon, 04 Aug 2008)
New Revision: 47980
URL: http://svn.boost.org/trac/boost/changeset/47980
Log:
forced propset
Properties modified:
branches/proto/v4/libs/wave/samples/waveidl/idllexer/idl.re (contents, props changed)
Text files modified:
branches/proto/v4/libs/wave/samples/waveidl/idllexer/idl.re | 48 ++++++++++++++++++++--------------------
1 files changed, 24 insertions(+), 24 deletions(-)
Modified: branches/proto/v4/libs/wave/samples/waveidl/idllexer/idl.re
==============================================================================
--- branches/proto/v4/libs/wave/samples/waveidl/idllexer/idl.re (original)
+++ branches/proto/v4/libs/wave/samples/waveidl/idllexer/idl.re 2008-08-04 19:43:18 EDT (Mon, 04 Aug 2008)
@@ -5,7 +5,7 @@
http://www.boost.org/
- Copyright (c) 2001-2008 Hartmut Kaiser. Distributed under the Boost
+ Copyright (c) 2001-2008 Hartmut Kaiser. Distributed under the Boost
Software License, Version 1.0. (See accompanying file
LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
=============================================================================*/
@@ -33,7 +33,7 @@
#include <boost/wave/token_ids.hpp>
#include <boost/wave/cpplexer/re2clex/aq.hpp>
#include <boost/wave/cpplexer/re2clex/scanner.hpp>
-#include <boost/wave/cpplexer/cpplexer_exceptions.hpp>
+#include <boost/wave/cpplexer/cpplexer_exceptions.hpp>
#include "idl_re.hpp"
@@ -200,11 +200,11 @@
if (buf == 0)
{
using namespace std; // some systems have printf in std
- if (0 != s->error_proc) {
- (*s->error_proc)(s,
- cpplexer::lexing_exception::unexpected_error,
- "Out of memory!");
- }
+ if (0 != s->error_proc) {
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::unexpected_error,
+ "Out of memory!");
+ }
else
printf("Out of memory!\n");
@@ -477,11 +477,11 @@
if(cursor != s->eof)
{
using namespace std; // some systems have printf in std
- if (0 != s->error_proc) {
- (*s->error_proc)(s,
- cpplexer::lexing_exception::generic_lexing_error,
- "'\\000' in input stream");
- }
+ if (0 != s->error_proc) {
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::generic_lexing_error,
+ "'\\000' in input stream");
+ }
else
printf("Error: 0 in file\n");
}
@@ -513,18 +513,18 @@
if(cursor == s->eof)
{
if (s->error_proc)
- (*s->error_proc)(s,
- cpplexer::lexing_exception::generic_lexing_warning,
- "Unterminated comment");
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::generic_lexing_warning,
+ "Unterminated comment");
else
printf("Error: Unterminated comment\n");
}
else
{
if (s->error_proc)
- (*s->error_proc)(s,
- cpplexer::lexing_exception::generic_lexing_error,
- "'\\000' in input stream");
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::generic_lexing_error,
+ "'\\000' in input stream");
else
printf("Error: 0 in file");
}
@@ -537,9 +537,9 @@
anyctrl
{
if (s->error_proc)
- (*s->error_proc)(s,
- cpplexer::lexing_exception::generic_lexing_error,
- "invalid character in input stream");
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::generic_lexing_error,
+ "invalid character in input stream");
else
printf("Error: 0 in file");
}
@@ -564,9 +564,9 @@
if(cursor != s->eof)
{
if (s->error_proc)
- (*s->error_proc)(s,
- cpplexer::lexing_exception::generic_lexing_error,
- "'\\000' in input stream");
+ (*s->error_proc)(s,
+ cpplexer::lexing_exception::generic_lexing_error,
+ "'\\000' in input stream");
else
printf("Error: 0 in file");
}
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