From fcc8630eede5498b48b45b99e4eaa1406d6657e9 Mon Sep 17 00:00:00 2001 From: Derek Mauro Date: Sat, 28 Dec 2024 14:17:10 -0800 Subject: [PATCH] Remove a trailing comma causing an issue for an OSS user Fixes https://github.com/abseil/abseil-cpp/discussions/1787 PiperOrigin-RevId: 710344161 Change-Id: I1358a0b82c8aa0436bd0b169d9eac8130c21b4e8 --- absl/container/internal/raw_hash_set.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/absl/container/internal/raw_hash_set.h b/absl/container/internal/raw_hash_set.h index 7a42a56c332..5cfa98bd5dc 100644 --- a/absl/container/internal/raw_hash_set.h +++ b/absl/container/internal/raw_hash_set.h @@ -4133,7 +4133,7 @@ class raw_hash_set { (std::is_same>::value ? &DeallocateStandard : &raw_hash_set::dealloc_fn), - &raw_hash_set::resize_impl, + &raw_hash_set::resize_impl }; return value; }