Mercurial > hg > btrack
diff src/CircularBuffer.h @ 92:f6708e4c69f1
More code style updates
author | Adam Stark <adamstark.uk@gmail.com> |
---|---|
date | Wed, 11 May 2016 00:19:06 +0100 |
parents | 5ef334c782f3 |
children | 4aa362058011 |
line wrap: on
line diff
--- a/src/CircularBuffer.h Wed May 11 00:06:52 2016 +0100 +++ b/src/CircularBuffer.h Wed May 11 00:19:06 2016 +0100 @@ -14,7 +14,7 @@ class CircularBuffer { public: - CircularBuffer() : writeIndex(0) + CircularBuffer() : writeIndex (0) { } @@ -33,7 +33,7 @@ void resize(int size) { - buffer.resize(size); + buffer.resize (size); writeIndex = 0; }