diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/util/AllocatedString.hxx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util/AllocatedString.hxx b/src/util/AllocatedString.hxx index 0a446e4fd..dbc0abfc0 100644 --- a/src/util/AllocatedString.hxx +++ b/src/util/AllocatedString.hxx @@ -77,7 +77,6 @@ public: } AllocatedString &operator=(AllocatedString &&src) { - *(StringPointer<T> *)this = std::move(src); std::swap(value, src.value); return *this; } |