Skip to content

Commit a93a1d2

Browse files
committed
Use detail::hl::make_tuple() instead of CTAD in test to fix build breakage on
some compilers.
1 parent 927f35f commit a93a1d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: test/parser_symbol_table.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -316,7 +316,7 @@ int main()
316316
add_parser >> roman_numerals >> next_delete_parser >>
317317
roman_numerals);
318318
BOOST_TEST(result);
319-
BOOST_TEST(*result == tuple(100, 100));
319+
BOOST_TEST(*result == detail::hl::make_tuple(100, 100));
320320
}
321321

322322
{

0 commit comments

Comments
 (0)