diff options
Diffstat (limited to 'src/util/AllocatedArray.hxx')
-rw-r--r-- | src/util/AllocatedArray.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util/AllocatedArray.hxx b/src/util/AllocatedArray.hxx index 3b14eb114..c7d3b9b28 100644 --- a/src/util/AllocatedArray.hxx +++ b/src/util/AllocatedArray.hxx @@ -112,7 +112,7 @@ public: * Returns true if no memory was allocated so far. */ constexpr bool empty() const { - return buffer.IsEmpty(); + return buffer.empty(); } /** |