Commit 84084baa authored by Max Kellermann's avatar Max Kellermann

util/AllocatedString: remove wrong `std::` prefix

parent 3bc45fbf
...@@ -96,7 +96,7 @@ public: ...@@ -96,7 +96,7 @@ public:
return *this; return *this;
} }
BasicAllocatedString &operator=(std::string_view src) noexcept { BasicAllocatedString &operator=(string_view src) noexcept {
delete[] std::exchange(value, nullptr); delete[] std::exchange(value, nullptr);
value = Duplicate(src); value = Duplicate(src);
return *this; return *this;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment