mirror of
https://github.com/boostorg/fusion.git
synced 2025-07-15 13:26:40 +02:00
Suppress conversion warnings on MSVC.
This commit is contained in:
@ -85,9 +85,9 @@ void run_test()
|
||||
}
|
||||
|
||||
{
|
||||
vector<int, float> v1(4, 2);
|
||||
vector<int, float> v1(4, 2.0f);
|
||||
Point v2(5, 3);
|
||||
vector<long, double> v3(5, 4);
|
||||
vector<long, double> v3(5, 4.);
|
||||
BOOST_TEST(v1 < v2);
|
||||
BOOST_TEST(v1 <= v2);
|
||||
BOOST_TEST(v2 > v1);
|
||||
|
Reference in New Issue
Block a user