runformat
This commit is contained in:
parent
5d9c157f5e
commit
af44659e06
|
@ -4238,14 +4238,14 @@ void ignoredReturnValue_string_compare(std::string teststr, std::wstring testwst
|
|||
// cppcheck-suppress constParameter
|
||||
void ignoredReturnValue_container_access(std::string& s, std::string_view& sv, std::vector<int>& v)
|
||||
{
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
s.begin();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
v.end();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
sv.front();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
s.at(0);
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
s.begin();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
v.end();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
sv.front();
|
||||
// cppcheck-suppress ignoredReturnValue
|
||||
s.at(0);
|
||||
}
|
||||
|
||||
void ignoredReturnValue_locale_global(const std::locale& loc)
|
||||
|
|
Loading…
Reference in New Issue