aboutsummaryrefslogtreecommitdiff
path: root/src/server/shared/Packets
diff options
context:
space:
mode:
authorVincent-Michael <Vincent_Michael@gmx.de>2014-06-08 01:21:17 +0200
committerVincent-Michael <Vincent_Michael@gmx.de>2014-06-08 01:21:17 +0200
commit73e90f62411a4f507ae210ab20f78ce81af13b93 (patch)
treea4ab0fa6845ef84bd885da0b963395f67415093e /src/server/shared/Packets
parentf53045ae5c880ff5fbb75cfe0bd51bb5bbade655 (diff)
parent27b5e0d9ac20f7bc1a061e22ae923483bcf4f8db (diff)
Merge branch 'master' of github.com:TrinityCore/TrinityCore into 4.3.4
Diffstat (limited to 'src/server/shared/Packets')
-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 2638224acff..418f6677e76 100644
--- a/src/server/shared/Packets/ByteBuffer.h
+++ b/src/server/shared/Packets/ByteBuffer.h
@@ -510,18 +510,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(); }