use C++11 keyword 'alignas' instead of ALIGNED16 macro, issue #4432

This commit is contained in:
heckflosse
2018-03-07 18:47:21 +01:00
parent 3a404112af
commit 835ca352cf

View File

@@ -102,9 +102,9 @@ protected:
private:
unsigned int owner;
#ifdef __SSE2__
vfloat maxsv ALIGNED16;
vfloat sizev ALIGNED16;
vint sizeiv ALIGNED16;
alignas(16) vfloat maxsv;
alignas(16) vfloat sizev;
alignas(16) vint sizeiv;
#endif
public:
/// convenience flag! If one doesn't want to delete the buffer but want to flag it to be recomputed...