升级到 MSVC 2015(从 MSVC 2013)后,我开始收到以下代码的警告:
template< unsigned int i0, unsigned int i1, unsigned int i2, unsigned int i3 >
static __m128 Constant( )
{
static __m128i v = {
((i0&0x000000FF) >> 0 ), ((i0&0x0000FF00) >> 8), ((i0&0x00FF0000) >> 16), ((i0&0xFF000000) >> 24),
((i1&0x000000FF) >> 0 ), ((i1&0x0000FF00) >> 8), ((i1&0x00FF0000) >> 16), ((i1&0xFF000000) >> 24),
((i2&0x000000FF) >> 0 ), ((i2&0x0000FF00) >> 8), ((i2&0x00FF0000) >> 16), ((i2&0xFF000000) >> 24),
((i3&0x000000FF) >> 0 ), ((i3&0x0000FF00) >> 8), ((i3&0x00FF0000) >> 16), ((i3&0xFF000000) >> 24) };
return *(__m128*)&v;
}
产生以下(带Constant<0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF, 0x7FFFFFFF>()
):
note: see reference to function template instantiation '__m128 Constant<2147483647,2147483647,2147483647,2147483647>(void)' being compiled
warning C4838: conversion from 'unsigned int' to 'char' requires a narrowing conversion
__m128i
联合在内部定义emmintrin.h
,作为具有几种不同类型的数组的联合,代表一个 MMX 寄存器。要列出初始化结构,您必须使用联合中声明的第一个类型,在本例中为__int8
. 根据 MSVC 2013 文档(https://msdn.microsoft.com/en-us/library/29dh1w7z.aspx),__int8
映射到char
,我认为 MSVC 2015 也是如此。所以,警告似乎是有效的,因为即使模板参数是非类型的,也不是所有的字段char
在转换后都适合类型。
我的问题是为什么 MSVC 2013 没有对此发出警告(因为它似乎是核心 c++11 问题)?另外,是否有解决警告的“好”方法?