Further tweaked alignment hack for Option

This commit is contained in:
Phil Nash 2017-04-25 08:38:25 +01:00
parent a34c053f0a
commit d36fe214a6
1 changed files with 5 additions and 1 deletions

View File

@ -72,7 +72,11 @@ namespace Catch {
// These are here to force alignment for the storage
long double dummy1;
long long dummy2;
void (*dummy2)();
long double dummy3;
#ifdef CATCH_CONFIG_CPP11_LONG_LONG
long long dummy4;
#endif
};
};