Fix the problem

This commit is contained in:
Ed Hennis
2026-06-03 21:54:21 -04:00
parent 5c8158a0cc
commit 09a8589182
2 changed files with 17 additions and 16 deletions

View File

@@ -1404,7 +1404,7 @@ public:
{-20, -50, __LINE__},
});
for (auto const [larger, smaller, line] : c)
for (auto const& [larger, smaller, line] : c)
{
std::stringstream ss;
ss << larger << " > " << smaller;
@@ -1429,7 +1429,7 @@ public:
{-30, __LINE__},
{-600, __LINE__},
});
for (auto const [n, line] : c)
for (auto const& [n, line] : c)
{
auto const str = to_string(n);