preprocessor: Reactivated the expandMacros. This time it's done after the #if #else #endif has been

processed
This commit is contained in:
Daniel Marjamäki 2009-01-18 16:42:15 +00:00
parent ea686a1da9
commit 8785483878
1 changed files with 1 additions and 1 deletions

View File

@ -440,7 +440,7 @@ std::string Preprocessor::getcode(const std::string &filedata, std::string cfg)
ret << line << "\n"; ret << line << "\n";
} }
return ret.str(); return expandMacros(ret.str());
} }