util/AllocatedString: remove Null(), IsNull()

This commit is contained in:
Max Kellermann
2021-01-21 20:07:14 +01:00
parent 36168a24f5
commit 3bc45fbf68
5 changed files with 5 additions and 13 deletions

View File

@@ -65,7 +65,7 @@ public:
gcc_pure
operator bool() const noexcept {
return !needle.IsNull();
return needle != nullptr;
}
gcc_pure