From 7c9ba953addc2f346b43c49183aafb1286c2d241 Mon Sep 17 00:00:00 2001 From: ado Date: Sat, 5 Aug 2023 13:52:31 +0200 Subject: [PATCH] Fix typo --- test/test_parser2.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_parser2.hpp b/test/test_parser2.hpp index 8b7dc47..262cb92 100644 --- a/test/test_parser2.hpp +++ b/test/test_parser2.hpp @@ -120,7 +120,7 @@ column make_column(const std::string& input_header, return c; } -[[maybe_unused] void replace_all2(std::string& s, const std::string& old_value, +[[maybe_unused]] void replace_all2(std::string& s, const std::string& old_value, const std::string& new_value) { for (size_t i = 0; i < 999; ++i) { size_t pos = s.find(old_value);