Skip to content

Commit af44659

Browse files
committed
runformat
1 parent 5d9c157 commit af44659

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

test/cfg/std.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4238,14 +4238,14 @@ void ignoredReturnValue_string_compare(std::string teststr, std::wstring testwst
42384238
// cppcheck-suppress constParameter
42394239
void ignoredReturnValue_container_access(std::string& s, std::string_view& sv, std::vector<int>& v)
42404240
{
4241-
// cppcheck-suppress ignoredReturnValue
4242-
s.begin();
4243-
// cppcheck-suppress ignoredReturnValue
4244-
v.end();
4245-
// cppcheck-suppress ignoredReturnValue
4246-
sv.front();
4247-
// cppcheck-suppress ignoredReturnValue
4248-
s.at(0);
4241+
// cppcheck-suppress ignoredReturnValue
4242+
s.begin();
4243+
// cppcheck-suppress ignoredReturnValue
4244+
v.end();
4245+
// cppcheck-suppress ignoredReturnValue
4246+
sv.front();
4247+
// cppcheck-suppress ignoredReturnValue
4248+
s.at(0);
42494249
}
42504250

42514251
void ignoredReturnValue_locale_global(const std::locale& loc)

0 commit comments

Comments
 (0)