1
0
Fork 0
mirror of https://github.com/KingDuckZ/dindexer.git synced 2024-11-29 01:33:46 +00:00

...fix build on x86_64

Hopefully this doesn't break the build on ARM 32 again -_-
This commit is contained in:
King_DuckZ 2016-02-05 21:06:21 +01:00
parent f20d73bdab
commit 29d605a579

View file

@ -168,7 +168,7 @@ namespace pq {
//Hack to make some sort of "static pimpl"
struct StorageStruct { int a; int b[2 * 6]; void* c[2]; };
static constexpr std::size_t DATA_SIZE = sizeof(StorageStruct);
using storage = std::aligned_storage<DATA_SIZE, alignof(int)>::type;
using storage = std::aligned_storage<DATA_SIZE, alignof(StorageStruct)>::type;
void push_param ( const char* parFormat, ... );
storage m_storage;
PGParams m_par;