parent
a22a77c1fc
commit
efb583e3d1
|
@ -7890,10 +7890,10 @@ initializer list (7) string& replace (const_iterator i1, const_iterator i2, init
|
|||
</access>
|
||||
</container>
|
||||
<container id="stdVector" startPattern="std :: vector <" inherits="stdVectorDeque">
|
||||
<type unstable="erase insert" />
|
||||
<type unstable="erase insert"/>
|
||||
</container>
|
||||
<container id="stdDeque" startPattern="std :: deque <" inherits="stdVectorDeque">
|
||||
<type unstable="erase insert" />
|
||||
<type unstable="erase insert"/>
|
||||
</container>
|
||||
<container id="stdArray" startPattern="std :: array <" inherits="stdContainer" opLessAllowed="true">
|
||||
<size templateParameter="1">
|
||||
|
|
|
@ -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)
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue