Preprocessor: Added TODO in code. How can userDefines be empty? It is an inner condition and the outer condition checks that it's not empty.

This commit is contained in:
Daniel Marjamäki 2012-09-15 08:13:52 +02:00
parent a9c1a052b9
commit 329f672334
1 changed files with 1 additions and 1 deletions

View File

@ -840,7 +840,7 @@ void Preprocessor::preprocess(std::istream &srcCodeStream, std::string &processe
}
processedFile = handleIncludes(processedFile, filename, includePaths, defs);
if (_settings->userDefines.empty())
if (_settings->userDefines.empty()) // TODO: How can it be empty?
resultConfigurations = getcfgs(processedFile, filename);
} else {