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

@ -136,7 +136,7 @@ main()
{
typedef vector7<bool, char, short, int, long, float, double> type;
type vec(false, 'x', 3, 4, 5, 6.0, 7.0);
type vec(false, 'x', 3, 4, 5, 6.f, 7.0);
BOOST_TEST(at_c<0>(vec) == false);
BOOST_TEST(at_c<1>(vec) == 'x');