diff --git a/lib/preprocessor.cpp b/lib/preprocessor.cpp index 59267584d..b76c0fd03 100644 --- a/lib/preprocessor.cpp +++ b/lib/preprocessor.cpp @@ -48,9 +48,9 @@ static std::string trim(const std::string& s) Directive::Directive(const std::string &_file, const int _linenr, const std::string &_str): file(_file), - linenr(_linenr) + linenr(_linenr), + str(trim(_str)) { - str = trim(_str); } bool Preprocessor::missingIncludeFlag;