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 // cppcheck-suppress constParameter
void ignoredReturnValue_container_access(std::string& s, std::string_view& sv, std::vector<int>& v) void ignoredReturnValue_container_access(std::string& s, std::string_view& sv, std::vector<int>& v)
{ {
// cppcheck-suppress ignoredReturnValue // cppcheck-suppress ignoredReturnValue
s.begin(); s.begin();
// cppcheck-suppress ignoredReturnValue // cppcheck-suppress ignoredReturnValue
v.end(); v.end();
// cppcheck-suppress ignoredReturnValue // cppcheck-suppress ignoredReturnValue
sv.front(); sv.front();
// cppcheck-suppress ignoredReturnValue // cppcheck-suppress ignoredReturnValue
s.at(0); s.at(0);
} }
void ignoredReturnValue_locale_global(const std::locale& loc) void ignoredReturnValue_locale_global(const std::locale& loc)