diff --git a/src/util/CircularBuffer.hxx b/src/util/CircularBuffer.hxx index de7b69f98..4ee795e2b 100644 --- a/src/util/CircularBuffer.hxx +++ b/src/util/CircularBuffer.hxx @@ -23,8 +23,8 @@ template class CircularBuffer { public: using Range = std::span; - typedef typename Range::pointer pointer; - typedef typename Range::size_type size_type; + using pointer = typename Range::pointer; + using size_type = typename Range::size_type; protected: /**