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 == '\\') {