mirror of https://github.com/PCSX2/pcsx2.git
gsdx:linux: Fix clang compile
Everything seems to compile and run with clang 3.7.0 now. I don't know if clang 3.6.x works or not. 3.5.x doesn't.
This commit is contained in:
parent
2c2c61920e
commit
c088039394
|
@ -5592,7 +5592,7 @@ public:
|
|||
{
|
||||
ASSERT(i < 8);
|
||||
|
||||
return extract<i / 4>().extract32<i & 3>();
|
||||
return extract<i / 4>().template extract32<i & 3>();
|
||||
}
|
||||
|
||||
template<int i> __forceinline GSVector8 insert(__m128 m) const
|
||||
|
|
Loading…
Reference in New Issue