Commit 88966adf authored by Kenton Varda's avatar Kenton Varda

Merge pull request #241 from pqu/master

Increase arenaSpace to fix 32-bit builds.
parents 3871d11b 30729530
......@@ -221,7 +221,7 @@ public:
Orphanage getOrphanage();
private:
void* arenaSpace[20];
void* arenaSpace[21];
// Space in which we can construct a BuilderArena. We don't use BuilderArena directly here
// because we don't want clients to have to #include arena.h, which itself includes a bunch of
// big STL headers. We don't use a pointer to a BuilderArena because that would require an
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment