diff options
| author | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-07 23:56:13 +0200 |
|---|---|---|
| committer | Vincent-Michael <Vincent_Michael@gmx.de> | 2014-06-07 23:58:08 +0200 |
| commit | 1d39db16b9e5250033eda16da3dabbb61d61e83a (patch) | |
| tree | 8743d08e9ddcf800c904bccb2e8dd5ab2e80b1a6 /src/server/shared/Packets/ByteBuffer.h | |
| parent | 5fee5b012566191bfd0c27d3fcfc64aad6d657cb (diff) | |
Core/Misc: Kill Whitespace ...
Diffstat (limited to 'src/server/shared/Packets/ByteBuffer.h')
| -rw-r--r-- | src/server/shared/Packets/ByteBuffer.h | 12 |
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(); } |
