Suppress conversion warnings on MSVC.

This commit is contained in:
Kohei Takahashi
2016-02-16 01:02:58 +09:00
parent 100d223be4
commit 4173b4b97b
20 changed files with 43 additions and 43 deletions

View File

@ -107,9 +107,9 @@ main()
}
{
fusion::vector<int, float, int> v1(4, 2, 2);
fusion::vector<int, float, int> v1(4, 2.f, 2);
ns::point v2 = {5, 3, 3};
fusion::vector<long, double, int> v3(5, 4, 4);
fusion::vector<long, double, int> v3(5, 4., 4);
BOOST_TEST(v1 < v2);
BOOST_TEST(v1 <= v2);
BOOST_TEST(v2 > v1);