aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Packets/ByteBuffer.h
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-06-07 23:56:13 +0200
committerUnholychick <lucas__jensen@hotmail.com>2014-06-09 23:10:59 +0200
commit3be5178304226215246415bafb6547c41d193ac5 (patch)
treee4a27d6bf4900f34f8f9c1d3e09fc5b72f595124 /src/server/shared/Packets/ByteBuffer.h
parent6dc76223fbf2946ab262bc1c9a9a89bd9411090b (diff)
Core/Misc: Kill Whitespace ...
Diffstat (limited to 'src/server/shared/Packets/ByteBuffer.h')
-rw-r--r--src/server/shared/Packets/ByteBuffer.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h
index 9f766a72d19..11e835566e9 100644
--- a/src/server/shared/Packets/ByteBuffer.h
+++ b/src/server/shared/Packets/ByteBuffer.h
@@ -382,18 +382,18 @@ class ByteBuffer
return *this;
}
- uint8 * contents()
- {
+ uint8 * contents()
+ {
if (_storage.empty())
throw ByteBufferException();
- return &_storage[0];
+ return &_storage[0];
}
- const uint8 *contents() const
- {
+ const uint8 *contents() const
+ {
if (_storage.empty())
throw ByteBufferException();
- return &_storage[0];
+ return &_storage[0];
}
size_t size() const { return _storage.size(); }