diff --git a/src/util/AllocatedString.hxx b/src/util/AllocatedString.hxx index ae3d73e58..1e1f21b3f 100644 --- a/src/util/AllocatedString.hxx +++ b/src/util/AllocatedString.hxx @@ -99,10 +99,6 @@ public: return value == nullptr; } - constexpr bool operator!=(std::nullptr_t) const noexcept { - return value != nullptr; - } - operator string_view() const noexcept { return value != nullptr ? string_view(value)