Add missing deprecated copy assignment operator

Clang-13 warns (and -Werror dies) without it.
pull/1774/head
Jason Rhinelander 3 years ago
parent 497c62b586
commit 1e22417ade

@ -35,7 +35,8 @@ namespace llarp
explicit NetID(const byte_t* val);
explicit NetID(const NetID& other) = default;
NetID(const NetID& other) = default;
NetID& operator=(const NetID& other) = default;
bool
operator==(const NetID& other) const;

Loading…
Cancel
Save