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

std::tuple -> tuple in test to fix build with -DBUILD_WITH_HANA=true.

This commit is contained in:
Zach Laine
2025-04-12 19:33:11 -05:00
parent ead639e630
commit 87617fdec0

View File

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