diff --git a/src/util/AllocatedArray.hxx b/src/util/AllocatedArray.hxx index a01c3dd55..e0491be89 100644 --- a/src/util/AllocatedArray.hxx +++ b/src/util/AllocatedArray.hxx @@ -148,6 +148,14 @@ public: return buffer.size; } + pointer data() noexcept { + return buffer.data; + } + + const_pointer data() const noexcept { + return buffer.data; + } + reference front() noexcept { return buffer.front(); }