gsdx: use standard quote character

Nicer with tool that support ANSII text (cppcheck)
This commit is contained in:
Gregory Hainaut 2015-11-06 21:54:49 +01:00
parent 1aa6749956
commit f3394b16b8

View File

@ -2986,9 +2986,9 @@ public:
// Code extract:
// union { int i; float f; } __tmp;
GSVector.h:2977:40: error: declaration of int GSVector4::extract32() const::<anonymous union>::i
GSVector.h:2977:40: error: declaration of 'int GSVector4::extract32() const::<anonymous union>::i'
return _mm_extract_ps(m, i);
GSVector.h:2973:15: error: shadows template parm int i
GSVector.h:2973:15: error: shadows template parm 'int i'
template<int i> __forceinline int extract32() const
#endif