parent
a22a77c1fc
commit
efb583e3d1
|
@ -7890,10 +7890,10 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
||||||
</access>
|
</access>
|
||||||
</container>
|
</container>
|
||||||
<container id="stdVector" startPattern="std :: vector <" inherits="stdVectorDeque">
|
<container id="stdVector" startPattern="std :: vector <" inherits="stdVectorDeque">
|
||||||
<type unstable="erase insert" />
|
<type unstable="erase insert"/>
|
||||||
</container>
|
</container>
|
||||||
<container id="stdDeque" startPattern="std :: deque <" inherits="stdVectorDeque">
|
<container id="stdDeque" startPattern="std :: deque <" inherits="stdVectorDeque">
|
||||||
<type unstable="erase insert" />
|
<type unstable="erase insert"/>
|
||||||
</container>
|
</container>
|
||||||
<container id="stdArray" startPattern="std :: array <" inherits="stdContainer" opLessAllowed="true">
|
<container id="stdArray" startPattern="std :: array <" inherits="stdContainer" opLessAllowed="true">
|
||||||
<size templateParameter="1">
|
<size templateParameter="1">
|
||||||
|
|
|
@ -4728,7 +4728,7 @@ static void valueFlowInjectParameter(TokenList* tokenlist, ErrorLogger* errorLog
|
||||||
Args new_args;
|
Args new_args;
|
||||||
for (auto arg:args) {
|
for (auto arg:args) {
|
||||||
if (value.path != 0) {
|
if (value.path != 0) {
|
||||||
for(const auto& q:arg) {
|
for (const auto& q:arg) {
|
||||||
if (q.second.path == 0)
|
if (q.second.path == 0)
|
||||||
continue;
|
continue;
|
||||||
if (q.second.path != value.path)
|
if (q.second.path != value.path)
|
||||||
|
|
|
@ -20,20 +20,20 @@ public:
|
||||||
}
|
}
|
||||||
|
|
||||||
void reportOut(const std::string &outmsg) OVERRIDE {
|
void reportOut(const std::string &outmsg) OVERRIDE {
|
||||||
(void)outmsg;
|
(void)outmsg;
|
||||||
}
|
}
|
||||||
void reportErr(const ErrorLogger::ErrorMessage &msg) OVERRIDE {
|
void reportErr(const ErrorLogger::ErrorMessage &msg) OVERRIDE {
|
||||||
(void)msg;
|
(void)msg;
|
||||||
}
|
}
|
||||||
void reportProgress(const std::string& filename,
|
void reportProgress(const std::string& filename,
|
||||||
const char stage[],
|
const char stage[],
|
||||||
const std::size_t value) OVERRIDE {
|
const std::size_t value) OVERRIDE {
|
||||||
(void)filename;
|
(void)filename;
|
||||||
(void)stage;
|
(void)stage;
|
||||||
(void)value;
|
(void)value;
|
||||||
}
|
}
|
||||||
void bughuntingReport(const std::string &str) OVERRIDE {
|
void bughuntingReport(const std::string &str) OVERRIDE {
|
||||||
(void)str;
|
(void)str;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue