diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-09 10:39:48 +0100 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2012-03-09 10:39:48 +0100 |
commit | 11810e05e40e24de14a3f0213f978853ba632e9f (patch) | |
tree | c478b4c6fd42bb9cd838ced889d27a6c1c16fb8c /source/cCriticalSection.h | |
parent | Added NBT example dumps for reference (diff) | |
download | cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar.gz cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar.bz2 cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar.lz cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar.xz cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.tar.zst cuberite-11810e05e40e24de14a3f0213f978853ba632e9f.zip |
Diffstat (limited to 'source/cCriticalSection.h')
-rw-r--r-- | source/cCriticalSection.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/cCriticalSection.h b/source/cCriticalSection.h index 414c970f7..0a149a95a 100644 --- a/source/cCriticalSection.h +++ b/source/cCriticalSection.h @@ -19,10 +19,10 @@ private: #ifdef _WIN32
CRITICAL_SECTION m_CriticalSection;
#else // _WIN32
- void* m_CriticalSectionPtr; // Pointer to a CRITICAL_SECTION object
- void* m_Attributes;
+ void* m_CriticalSectionPtr ALIGN_8; // Pointer to a CRITICAL_SECTION object
+ void* m_Attributes ALIGN_8;
#endif // else _WIN32
-};
+} ALIGN_8;
|