mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-14 14:46:12 -04:00
Remove extra semi which breaks ChromeOs build
PiperOrigin-RevId: 631928582
This commit is contained in:
@@ -15,7 +15,6 @@
|
||||
#ifndef THIRD_PARTY_NEARBY_PRESENCE_ADVERTISEMENT_DECODER_RUST_IMPL_H_
|
||||
#define THIRD_PARTY_NEARBY_PRESENCE_ADVERTISEMENT_DECODER_RUST_IMPL_H_
|
||||
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
||||
#include "absl/container/flat_hash_map.h"
|
||||
@@ -30,12 +29,13 @@ namespace presence {
|
||||
// Implements the Rust backed parsing and decrypting of advertisement bytes
|
||||
class AdvertisementDecoderImpl : public AdvertisementDecoder {
|
||||
public:
|
||||
AdvertisementDecoderImpl() : cred_book_(InitializeCredentialBook(nullptr)) {};
|
||||
AdvertisementDecoderImpl() : cred_book_(InitializeCredentialBook(nullptr)) {}
|
||||
|
||||
explicit AdvertisementDecoderImpl(
|
||||
absl::flat_hash_map<nearby::internal::IdentityType,
|
||||
std::vector<internal::SharedCredential>>*
|
||||
credentials_map)
|
||||
: cred_book_(InitializeCredentialBook(credentials_map)) {};
|
||||
: cred_book_(InitializeCredentialBook(credentials_map)) {}
|
||||
|
||||
absl::StatusOr<Advertisement> DecodeAdvertisement(
|
||||
absl::string_view advertisement) override;
|
||||
|
||||
Reference in New Issue
Block a user