Skip to content

Commit c14e330

Browse files
committed
change c++17 syntaxis
1 parent 4401650 commit c14e330

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

libhdt/tests/c11.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
int
44
main(int argc, char **argv)
55
{
6-
std::tuple<int, int> t = { 1, 1};
6+
std::tuple<int, int> t = std::make_tuple(1,1);
77
std::tuple<int, int> u;
88
t.swap(u);
99
return 0;

0 commit comments

Comments
 (0)