diff --git a/cfg/std.cfg b/cfg/std.cfg index 288d4ea3c..5a19724a3 100644 --- a/cfg/std.cfg +++ b/cfg/std.cfg @@ -7890,10 +7890,10 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init - + - + diff --git a/lib/valueflow.cpp b/lib/valueflow.cpp index 76057770f..f29406d44 100644 --- a/lib/valueflow.cpp +++ b/lib/valueflow.cpp @@ -4728,7 +4728,7 @@ static void valueFlowInjectParameter(TokenList* tokenlist, ErrorLogger* errorLog Args new_args; for (auto arg:args) { if (value.path != 0) { - for(const auto& q:arg) { + for (const auto& q:arg) { if (q.second.path == 0) continue; if (q.second.path != value.path) diff --git a/oss-fuzz/main.cpp b/oss-fuzz/main.cpp index 827f84cd4..e8173174c 100644 --- a/oss-fuzz/main.cpp +++ b/oss-fuzz/main.cpp @@ -20,20 +20,20 @@ public: } void reportOut(const std::string &outmsg) OVERRIDE { - (void)outmsg; + (void)outmsg; } void reportErr(const ErrorLogger::ErrorMessage &msg) OVERRIDE { - (void)msg; + (void)msg; } void reportProgress(const std::string& filename, const char stage[], const std::size_t value) OVERRIDE { - (void)filename; - (void)stage; - (void)value; + (void)filename; + (void)stage; + (void)value; } - void bughuntingReport(const std::string &str) OVERRIDE { - (void)str; + void bughuntingReport(const std::string &str) OVERRIDE { + (void)str; } };