From f9191539a86105c70e1e07b7914ca85bf8d1dfd3 Mon Sep 17 00:00:00 2001 From: Nicolas Le Cam Date: Wed, 21 Jan 2009 22:07:22 +0000 Subject: [PATCH] Code cleanup. --- src/preprocessor.cpp | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/src/preprocessor.cpp b/src/preprocessor.cpp index 42fed4b4d..f45296385 100644 --- a/src/preprocessor.cpp +++ b/src/preprocessor.cpp @@ -144,22 +144,6 @@ std::string Preprocessor::read(std::istream &istr) } while (istr.good() && chNext != ch); } - /* - // char constants.. - else if (ch == '\'') - { - code << "\'"; - ch = readChar(istr); - code << std::string(1, ch); - if (ch == '\\') - { - ch = readChar(istr); - code << std::string(1, ch); - } - ch = readChar(istr); - code << "\'"; - } - */ // .. else if (ch == '\\') {