From f788b891908dd93274918e5b919e09136f3f1efd Mon Sep 17 00:00:00 2001 From: Ryan Hansberry Date: Tue, 9 Apr 2024 09:52:35 -0700 Subject: [PATCH] [NearbyPresence] Fix typo: remove extraneous semicolon. PiperOrigin-RevId: 623198081 --- presence/implementation/advertisement_decoder_impl.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/presence/implementation/advertisement_decoder_impl.h b/presence/implementation/advertisement_decoder_impl.h index 22592600..c3e7e592 100644 --- a/presence/implementation/advertisement_decoder_impl.h +++ b/presence/implementation/advertisement_decoder_impl.h @@ -34,7 +34,7 @@ class AdvertisementDecoderImpl : public AdvertisementDecoder { absl::flat_hash_map>* credentials_map) - : credentials_map_(credentials_map) {}; + : credentials_map_(credentials_map) {} absl::StatusOr DecodeAdvertisement( absl::string_view advertisement) override;