mirror of
https://github.com/zeek/zeek.git
synced 2025-10-06 00:28:21 +00:00
Add move assignment operator to ZeekString, which already had a move constructor
This commit is contained in:
parent
4f0d18f45f
commit
637ea28653
2 changed files with 20 additions and 0 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue