diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 20:05:54 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2017-04-28 20:05:54 +0200 |
commit | c0ff56e222b25561c39600a2787d8099d1098a10 (patch) | |
tree | 0432600cae7edb0cf6f4da08c05ffbea36f7f964 | |
parent | 2fd0863c6a1689180e032681dd574810b7e83c5f (diff) |
Increase target data pad size for GCC 4.9
-rw-r--r-- | build2/target | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build2/target b/build2/target index 4316ff6..4838dfb 100644 --- a/build2/target +++ b/build2/target @@ -572,7 +572,7 @@ namespace build2 // // Note that the recipe may modify the data. // - static constexpr size_t data_size = sizeof (string) * 8; + static constexpr size_t data_size = sizeof (string) * 10; mutable std::aligned_storage<data_size>::type data_pad; mutable void (*data_dtor) (void*) = nullptr; |