diff options
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r-- | absl/container/inlined_vector.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index f0b0aff4..245e1c57 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -816,8 +816,8 @@ class InlinedVector { void MoveAssignment(MemcpyPolicy, InlinedVector&& other) { // Assumption check: we shouldn't be told to use memcpy to implement move - // assignment unless we have trivially destructible elements and an allocator - // that does nothing fancy. + // assignment unless we have trivially destructible elements and an + // allocator that does nothing fancy. static_assert(absl::is_trivially_destructible<value_type>::value, ""); static_assert(std::is_same<A, std::allocator<value_type>>::value, ""); |