Add missing deprecated copy assignment operator

Clang-13 warns (and -Werror dies) without it.
This commit is contained in:
Jason Rhinelander 2021-10-14 19:58:26 -03:00
parent 497c62b586
commit 1e22417ade
1 changed files with 2 additions and 1 deletions

View File

@ -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;