From 5d78fc832daf64997ab44494a82667cf86ab1e38 Mon Sep 17 00:00:00 2001 From: ToruNiina Date: Tue, 4 Feb 2025 23:58:00 +0900 Subject: [PATCH] test: rm init_list ctor of char_either from test --- tests/test_scanner.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_scanner.cpp b/tests/test_scanner.cpp index c0ef738..01e358b 100644 --- a/tests/test_scanner.cpp +++ b/tests/test_scanner.cpp @@ -24,7 +24,7 @@ TEST_CASE("testing scanner: character_either") { auto loc = toml::detail::make_temporary_location("\t \t01\0"); - toml::detail::character_either wschar{'\t', ' '}; + toml::detail::character_either wschar("\t "); toml::detail::character_either digit01("01"); CHECK_UNARY( wschar .scan(loc).is_ok());