util/AllocatedString: remove wrong std::
prefix
This commit is contained in:
@@ -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;
|
||||||
|
Reference in New Issue
Block a user