diff options
Diffstat (limited to 'absl/container/inlined_vector.h')
-rw-r--r-- | absl/container/inlined_vector.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/absl/container/inlined_vector.h b/absl/container/inlined_vector.h index ca36fd3699b9..0c0ffb0b1366 100644 --- a/absl/container/inlined_vector.h +++ b/absl/container/inlined_vector.h @@ -648,8 +648,7 @@ class InlinedVector { // our instance of it for free. class AllocatorAndTag : private allocator_type { public: - explicit AllocatorAndTag(const allocator_type& a, Tag t = Tag()) - : allocator_type(a), tag_(t) {} + explicit AllocatorAndTag(const allocator_type& a) : allocator_type(a) {} Tag& tag() { return tag_; } const Tag& tag() const { return tag_; } allocator_type& allocator() { return *this; } |