2
0
mirror of https://github.com/boostorg/parser.git synced 2026-01-19 04:22:13 +00:00

Use detail::hl::make_tuple() instead of CTAD in test to fix build breakage on

some compilers.
This commit is contained in:
Zach Laine
2025-04-13 14:25:27 -05:00
parent 927f35f115
commit a93a1d2647

View File

@@ -316,7 +316,7 @@ int main()
add_parser >> roman_numerals >> next_delete_parser >>
roman_numerals);
BOOST_TEST(result);
BOOST_TEST(*result == tuple(100, 100));
BOOST_TEST(*result == detail::hl::make_tuple(100, 100));
}
{