diff options
author | Abseil Team <absl-team@google.com> | 2021-03-18 11:32:36 -0700 |
---|---|---|
committer | Dino Radaković <dinor@google.com> | 2021-03-19 06:52:46 -0700 |
commit | 110a80b0f01e6c013529661b433dc3f9ffe1df66 (patch) | |
tree | e2f7608835b345fad9474fe02bf8c52cf2eefe57 /absl | |
parent | 090646f973df94c2ca9e27589b85dc662ae4873b (diff) |
Export of internal Abseil changes
--
eb820bdf4121c00a60da406333799cda3222ee4d by Derek Mauro <dmauro@google.com>:
Internal change
PiperOrigin-RevId: 363704749
GitOrigin-RevId: eb820bdf4121c00a60da406333799cda3222ee4d
Change-Id: Ia3bca66b12a1abcf96940292ab4cd8d33d712fb5
Diffstat (limited to 'absl')
-rw-r--r-- | absl/container/internal/layout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/absl/container/internal/layout.h b/absl/container/internal/layout.h index 4dfd862a..a59a2430 100644 --- a/absl/container/internal/layout.h +++ b/absl/container/internal/layout.h @@ -597,7 +597,7 @@ class LayoutImpl<std::tuple<Elements...>, absl::index_sequence<SizeSeq...>, constexpr size_t AllocSize() const { static_assert(NumTypes == NumSizes, "You must specify sizes of all fields"); return Offset<NumTypes - 1>() + - SizeOf<ElementType<NumTypes - 1>>::value * size_[NumTypes - 1]; + SizeOf<ElementType<NumTypes - 1>>::value * size_[NumTypes - 1]; } // If built with --config=asan, poisons padding bytes (if any) in the |