Fixed VS2017 C4101: unreferenced local variable.

This commit is contained in:
orbitcowboy 2018-05-29 13:18:07 +02:00
parent 976e9e2544
commit b94e5ab9cb
1 changed files with 1 additions and 1 deletions

View File

@ -691,7 +691,7 @@ std::string Preprocessor::getcode(const std::string &filedata, const std::string
std::string ret;
try {
ret = getcode(tokens1, cfg, files, filedata.find("#file") != std::string::npos);
} catch (const simplecpp::Output &o) {
} catch (const simplecpp::Output &) {
ret.clear();
}
return ret;