util/WritableBuffer: fix indent

This commit is contained in:
Max Kellermann 2013-12-15 22:58:24 +01:00
parent c44cb3246d
commit e5a2efaa65

View File

@ -41,47 +41,47 @@
*/ */
template<typename T> template<typename T>
struct WritableBuffer { struct WritableBuffer {
typedef size_t size_type; typedef size_t size_type;
typedef T *pointer_type; typedef T *pointer_type;
typedef const T *const_pointer_type; typedef const T *const_pointer_type;
typedef pointer_type iterator; typedef pointer_type iterator;
typedef const_pointer_type const_iterator; typedef const_pointer_type const_iterator;
pointer_type data; pointer_type data;
size_type size; size_type size;
WritableBuffer() = default; WritableBuffer() = default;
constexpr WritableBuffer(pointer_type _data, size_type _size) constexpr WritableBuffer(pointer_type _data, size_type _size)
:data(_data), size(_size) {} :data(_data), size(_size) {}
constexpr static WritableBuffer Null() { constexpr static WritableBuffer Null() {
return { nullptr, 0 }; return { nullptr, 0 };
} }
constexpr bool IsNull() const { constexpr bool IsNull() const {
return data == nullptr; return data == nullptr;
} }
constexpr bool IsEmpty() const { constexpr bool IsEmpty() const {
return size == 0; return size == 0;
} }
constexpr iterator begin() const { constexpr iterator begin() const {
return data; return data;
} }
constexpr iterator end() const { constexpr iterator end() const {
return data + size; return data + size;
} }
constexpr const_iterator cbegin() const { constexpr const_iterator cbegin() const {
return data; return data;
} }
constexpr const_iterator cend() const { constexpr const_iterator cend() const {
return data + size; return data + size;
} }
}; };
#endif #endif