Hans Johnson 4c7ed03b5f COMP: Fix problem with narrowing in c++11
modules/core/src/arithm.cpp:345:51:
error: constant expression evaluates to 4294967295 which cannot be narrowed to type 'int' [-Wc++11-narrowing]
static int CV_DECL_ALIGNED(16) v64f_absmask[] = { 0xffffffff, 0x7fffffff, 0xffffffff, 0x7fffffff };
                                                  ^~~~~~~~~~

Converted to unsigned int.  This variable is only used to initialize a bit pattern anywhy for a 128bit type.
2014-06-17 15:49:06 -05:00
..
2014-02-04 16:48:35 +04:00
2014-06-04 14:21:42 +04:00
2013-10-08 17:20:29 +04:00
2014-02-04 11:09:29 +04:00
2014-05-26 12:19:06 +03:00
2014-01-18 01:31:33 +04:00
2014-05-26 12:19:06 +03:00
2014-04-22 23:47:04 +04:00
2014-04-17 11:07:01 +04:00
2014-05-07 06:17:37 +08:00