Skip to content

Commit

Permalink
Increase arenaSpace (break ABI)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dat Chu committed Nov 8, 2023
1 parent ba375d7 commit c3c2655
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions c++/src/capnp/message.h
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ class MessageReader {
ReaderOptions options;

#if defined(__EMSCRIPTEN__) || (defined(__APPLE__) && (defined(__ppc__) || defined(__i386__)))
static constexpr size_t arenaSpacePadding = 19;
static constexpr size_t arenaSpacePadding = 20;
#else
static constexpr size_t arenaSpacePadding = 18;
static constexpr size_t arenaSpacePadding = 19;
#endif

// Space in which we can construct a ReaderArena. We don't use ReaderArena directly here
Expand Down

0 comments on commit c3c2655

Please sign in to comment.