use C++11 keyword 'alignas' instead of ALIGNED16 macro, issue #4432
This commit is contained in:
@@ -102,9 +102,9 @@ protected:
|
|||||||
private:
|
private:
|
||||||
unsigned int owner;
|
unsigned int owner;
|
||||||
#ifdef __SSE2__
|
#ifdef __SSE2__
|
||||||
vfloat maxsv ALIGNED16;
|
alignas(16) vfloat maxsv;
|
||||||
vfloat sizev ALIGNED16;
|
alignas(16) vfloat sizev;
|
||||||
vint sizeiv ALIGNED16;
|
alignas(16) vint sizeiv;
|
||||||
#endif
|
#endif
|
||||||
public:
|
public:
|
||||||
/// convenience flag! If one doesn't want to delete the buffer but want to flag it to be recomputed...
|
/// convenience flag! If one doesn't want to delete the buffer but want to flag it to be recomputed...
|
||||||
|
Reference in New Issue
Block a user