From a26dcf59cea49f7e1cb21f57423bd3937d0790e3 Mon Sep 17 00:00:00 2001 From: Nikita Kniazev Date: Fri, 5 Oct 2018 15:54:35 +0300 Subject: [PATCH] TST: vector_n: Fixed conversion warning ``` boost\fusion\container\vector\vector.hpp(168): warning C4244: 'initializing': conversion from 'T' to 'T', possible loss of data 1> with 1> [ 1> T=int 1> ] 1> and 1> [ 1> T=float 1> ] ``` --- test/sequence/vector_n.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/sequence/vector_n.cpp b/test/sequence/vector_n.cpp index 2109bd5c..65e1032d 100644 --- a/test/sequence/vector_n.cpp +++ b/test/sequence/vector_n.cpp @@ -94,7 +94,7 @@ main() } { - vector2 t1(123, 456); + vector2 t1(123, 456); vector2 t2(t1); (void)t2; }