runformat

This commit is contained in:
Daniel Marjamäki 2023-02-25 10:23:45 +01:00
parent 5d9c157f5e
commit af44659e06
1 changed files with 8 additions and 8 deletions

View File

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