aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2013-12-15 22:58:24 +0100
committerMax Kellermann <max@duempel.org>2013-12-15 22:58:32 +0100
commite5a2efaa659436f3ca335804cef9a6ce34be2fbd (patch)
treeacf6d0801bbeadb130f5978d37b296ea0829ca5b /src
parentc44cb3246dfa526eeb68fb2c3ca41f12f67f78ab (diff)
downloadmpd-e5a2efaa659436f3ca335804cef9a6ce34be2fbd.tar.gz
mpd-e5a2efaa659436f3ca335804cef9a6ce34be2fbd.tar.xz
mpd-e5a2efaa659436f3ca335804cef9a6ce34be2fbd.zip
util/WritableBuffer: fix indent
Diffstat (limited to 'src')
-rw-r--r--src/util/WritableBuffer.hxx62
1 files changed, 31 insertions, 31 deletions
diff --git a/src/util/WritableBuffer.hxx b/src/util/WritableBuffer.hxx
index 4e529cfad..1b37b56cb 100644
--- a/src/util/WritableBuffer.hxx
+++ b/src/util/WritableBuffer.hxx
@@ -41,47 +41,47 @@
*/
template<typename T>
struct WritableBuffer {
- typedef size_t size_type;
- typedef T *pointer_type;
- typedef const T *const_pointer_type;
- typedef pointer_type iterator;
- typedef const_pointer_type const_iterator;
+ typedef size_t size_type;
+ typedef T *pointer_type;
+ typedef const T *const_pointer_type;
+ typedef pointer_type iterator;
+ typedef const_pointer_type const_iterator;
- pointer_type data;
- size_type size;
+ pointer_type data;
+ size_type size;
- WritableBuffer() = default;
+ WritableBuffer() = default;
- constexpr WritableBuffer(pointer_type _data, size_type _size)
- :data(_data), size(_size) {}
+ constexpr WritableBuffer(pointer_type _data, size_type _size)
+ :data(_data), size(_size) {}
- constexpr static WritableBuffer Null() {
- return { nullptr, 0 };
- }
+ constexpr static WritableBuffer Null() {
+ return { nullptr, 0 };
+ }
- constexpr bool IsNull() const {
- return data == nullptr;
- }
+ constexpr bool IsNull() const {
+ return data == nullptr;
+ }
- constexpr bool IsEmpty() const {
- return size == 0;
- }
+ constexpr bool IsEmpty() const {
+ return size == 0;
+ }
- constexpr iterator begin() const {
- return data;
- }
+ constexpr iterator begin() const {
+ return data;
+ }
- constexpr iterator end() const {
- return data + size;
- }
+ constexpr iterator end() const {
+ return data + size;
+ }
- constexpr const_iterator cbegin() const {
- return data;
- }
+ constexpr const_iterator cbegin() const {
+ return data;
+ }
- constexpr const_iterator cend() const {
- return data + size;
- }
+ constexpr const_iterator cend() const {
+ return data + size;
+ }
};
#endif