Skip to content

Commit

Permalink
Restyled by clang-format (#18451)
Browse files Browse the repository at this point in the history
Co-authored-by: Restyled.io <commits@restyled.io>
  • Loading branch information
restyled-io[bot] and restyled-commits authored May 13, 2022
1 parent c4f8136 commit 95ed81c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/protocols/user_directed_commissioning/UDCClientState.h
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ class UDCClientState
public:
UDCClientState() : mPeerAddress(PeerAddress::Uninitialized()) {}

UDCClientState(UDCClientState &&) = default;
UDCClientState(const UDCClientState &) = default;
UDCClientState(UDCClientState &&) = default;
UDCClientState(const UDCClientState &) = default;
UDCClientState & operator=(const UDCClientState &) = default;
UDCClientState & operator=(UDCClientState &&) = default;
UDCClientState & operator=(UDCClientState &&) = default;

const PeerAddress GetPeerAddress() const { return mPeerAddress; }
void SetPeerAddress(const PeerAddress & address) { mPeerAddress = address; }
Expand Down

0 comments on commit 95ed81c

Please sign in to comment.