diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-07 11:09:56 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-08-07 11:09:56 +0200 |
commit | 1d275d927205351f02c92524d8350277abe8be56 (patch) | |
tree | 614fd3d95bc36784d40f1085a50bd0c70ba66a70 | |
parent | 51d80ab63a32648caf2acc20ebf50d21f73cc3a3 (diff) |
Increase target pad size
-rw-r--r-- | build2/target.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/target.hxx b/build2/target.hxx index 94fb800..0309dd6 100644 --- a/build2/target.hxx +++ b/build2/target.hxx @@ -596,7 +596,7 @@ namespace build2 // // Note that the recipe may modify the data. // - static constexpr size_t data_size = sizeof (string) * 12; + static constexpr size_t data_size = sizeof (string) * 16; mutable std::aligned_storage<data_size>::type data_pad; mutable void (*data_dtor) (void*) = nullptr; |