summaryrefslogtreecommitdiff
path: root/TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp')
-rw-r--r--TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp b/TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp
index f829301caaf..239fa962c75 100644
--- a/TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp
+++ b/TAO/CIAO/CCF/CCF/CompilerElements/Preprocessor.hpp
@@ -10,9 +10,6 @@
#include "CCF/CompilerElements/TokenStream.hpp"
-// tmp
-// #include <iostream>
-
namespace CCF
{
//@@ this code is experimental and needs cleaning
@@ -76,7 +73,6 @@ namespace CCF
}
case '#':
{
- // std::cerr << "see \'#\'; state is " << state << std::endl;
if (state != PREPROCESSING) break;
return handle_preprocessor_token ();
}
@@ -98,7 +94,7 @@ namespace CCF
char_type c = to_char_type (i);
- //@@ '\n' won't work on MS
+ //@@ '\n' won't work on MShit
switch (c)
{
case '\n': return underflow (); //skip it
@@ -130,7 +126,7 @@ namespace CCF
int_type
handle_preprocessor_token ()
{
- // std::cerr << "handle_preprocessor_token" << std::endl;
+ //std::cerr << "handle_preprocessor_token" << std::endl;
skip_white_space ();