Add move assignment operator to ZeekString, which already had a move constructor

This commit is contained in:
Tim Wojtulewicz 2025-04-08 09:58:41 -07:00
parent 4f0d18f45f
commit 637ea28653
2 changed files with 20 additions and 0 deletions

View file

@ -54,6 +54,7 @@ public:
~String() { Reset(); }
const String& operator=(const String& bs);
String& operator=(String&& bs) noexcept;
bool operator==(const String& bs) const;
bool operator<(const String& bs) const;
bool operator==(std::string_view s) const;