Fix the unit test of adapt_struct for consistency with other tests of the same kind.

This commit is contained in:
Damien Buhl (alias daminetreg)
2014-06-25 00:25:14 +02:00
parent dd0cee1721
commit bf66c12cde

View File

@ -159,7 +159,7 @@ main()
{ {
// conversion from point to list // conversion from point to list
point p = {5, 3, 3}; point p = {5, 3, 3};
list<int, long> l(p); list<int, long, int> l(p);
l = p; l = p;
} }