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:
parent
f20d73bdab
commit
29d605a579
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue