diff options
| author | teyrnon <teyronos@gmail.com> | 2012-02-29 15:09:51 +0200 |
|---|---|---|
| committer | teyrnon <teyronos@gmail.com> | 2012-02-29 15:09:51 +0200 |
| commit | 8e18726b69c6c700e0e36b7858ac786e5f4ae490 (patch) | |
| tree | 3b9ab03051c00cefbf80050e28514b260062419d /src | |
| parent | 8e8ff7c66037753ffb2a707f5bfde153405e5f35 (diff) | |
Update src/server/shared/Packets/ByteBuffer.h
Diffstat (limited to 'src')
| -rwxr-xr-x | src/server/shared/Packets/ByteBuffer.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/src/server/shared/Packets/ByteBuffer.h b/src/server/shared/Packets/ByteBuffer.h index 3cd6ff73b1e..e6fdcf0f202 100755 --- a/src/server/shared/Packets/ByteBuffer.h +++ b/src/server/shared/Packets/ByteBuffer.h @@ -30,11 +30,9 @@ class ByteBufferException ByteBufferException(size_t pos, size_t size, size_t valueSize) : Pos(pos), Size(size), ValueSize(valueSize) { - PrintError(); } protected: - virtual void PrintError() const = 0; size_t Pos; size_t Size; @@ -45,7 +43,10 @@ class ByteBufferPositionException : public ByteBufferException { public: ByteBufferPositionException(bool add, size_t pos, size_t size, size_t valueSize) - : ByteBufferException(pos, size, valueSize), _add(add) {} + : ByteBufferException(pos, size, valueSize), _add(add) + { + PrintError(); + } protected: void PrintError() const @@ -62,7 +63,10 @@ class ByteBufferSourceException : public ByteBufferException { public: ByteBufferSourceException(size_t pos, size_t size, size_t valueSize) - : ByteBufferException(pos, size, valueSize) {} + : ByteBufferException(pos, size, valueSize) + { + PrintError(); + } protected: void PrintError() const |
