aboutsummaryrefslogtreecommitdiff
path: root/build2
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-08-07 11:09:56 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-08-07 11:09:56 +0200
commit1d275d927205351f02c92524d8350277abe8be56 (patch)
tree614fd3d95bc36784d40f1085a50bd0c70ba66a70 /build2
parent51d80ab63a32648caf2acc20ebf50d21f73cc3a3 (diff)
Increase target pad size
Diffstat (limited to 'build2')
-rw-r--r--build2/target.hxx2
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;