util/{Const,Writable}Buffer: use std::size_t

This commit is contained in:
Max Kellermann
2020-01-03 15:38:02 +01:00
parent 4b0e288f00
commit e654c6e005
5 changed files with 11 additions and 10 deletions

View File

@@ -51,7 +51,7 @@
template<typename T>
class ForeignFifoBuffer {
public:
using size_type = size_t;
using size_type = std::size_t;
using Range = WritableBuffer<T>;
using pointer_type = typename Range::pointer_type;
using const_pointer_type = typename Range::const_pointer_type;