We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4401650 commit c14e330Copy full SHA for c14e330
1 file changed
libhdt/tests/c11.cpp
@@ -3,7 +3,7 @@
3
int
4
main(int argc, char **argv)
5
{
6
- std::tuple<int, int> t = { 1, 1};
+ std::tuple<int, int> t = std::make_tuple(1,1);
7
std::tuple<int, int> u;
8
t.swap(u);
9
return 0;
0 commit comments