Merge pull request #197 from Kojoley/vector_n-test-fix-warning

TST: vector_n: Fixed conversion warning
This commit is contained in:
Kohei Takahashi
2018-10-10 22:31:53 +09:00
committed by GitHub

View File

@ -94,7 +94,7 @@ main()
}
{
vector2<int, int> t1(123, 456);
vector2<int, short> t1(123, 456);
vector2<double, float> t2(t1);
(void)t2;
}