util/AllocatedString: remove wrong std:: prefix

This commit is contained in:
Max Kellermann 2021-01-21 20:16:32 +01:00
parent 3bc45fbf68
commit 84084baa65

View File

@ -96,7 +96,7 @@ public:
return *this;
}
BasicAllocatedString &operator=(std::string_view src) noexcept {
BasicAllocatedString &operator=(string_view src) noexcept {
delete[] std::exchange(value, nullptr);
value = Duplicate(src);
return *this;