astyle formatting

[ci skip]
This commit is contained in:
Daniel Marjamäki 2020-04-04 10:31:38 +02:00
parent a22a77c1fc
commit efb583e3d1
3 changed files with 10 additions and 10 deletions

View File

@ -7890,10 +7890,10 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
</access>
</container>
<container id="stdVector" startPattern="std :: vector &lt;" inherits="stdVectorDeque">
<type unstable="erase insert" />
<type unstable="erase insert"/>
</container>
<container id="stdDeque" startPattern="std :: deque &lt;" inherits="stdVectorDeque">
<type unstable="erase insert" />
<type unstable="erase insert"/>
</container>
<container id="stdArray" startPattern="std :: array &lt;" inherits="stdContainer" opLessAllowed="true">
<size templateParameter="1">

View File

@ -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)

View File

@ -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;
}
};