From 87617fdec0a86894dbfc9ec6609ce94e606331ad Mon Sep 17 00:00:00 2001 From: Zach Laine Date: Sat, 12 Apr 2025 19:33:11 -0500 Subject: [PATCH] std::tuple -> tuple in test to fix build with -DBUILD_WITH_HANA=true. --- test/parser_symbol_table.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/parser_symbol_table.cpp b/test/parser_symbol_table.cpp index 448d7282..559c4bdb 100644 --- a/test/parser_symbol_table.cpp +++ b/test/parser_symbol_table.cpp @@ -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)); } {