libroot_debug: Revert to a legacy default alignment of 8.

This reverts the legacy default alignment (in absence of max_align_t)
to 8, as it was before.
This commit is contained in:
Michael Lotz
2015-08-13 22:12:19 +02:00
parent f474606ee9
commit 8fa441bf5c
2 changed files with 2 additions and 2 deletions
@@ -38,7 +38,7 @@ static int32 sStackEndTLSIndex = -1;
using namespace std;
static size_t sDefaultAlignment = alignof(max_align_t);
#else
static size_t sDefaultAlignment = 0;
static size_t sDefaultAlignment = 8;
#endif
@@ -54,7 +54,7 @@ static bool sUseGuardPage = false;
using namespace std;
static size_t sDefaultAlignment = alignof(max_align_t);
#else
static size_t sDefaultAlignment = 0;
static size_t sDefaultAlignment = 8;
#endif