diff options
author | megamage <none@none> | 2009-03-18 20:22:42 -0600 |
---|---|---|
committer | megamage <none@none> | 2009-03-18 20:22:42 -0600 |
commit | f8bb0cd1671dc34c0df272bb20795d306e7d5e38 (patch) | |
tree | abf2488c2953ec60df0b80a4411ffbd72c52344f /src/shared/ByteBuffer.h | |
parent | 82777554a0a14a73e2dc9ffcda662ad89408b229 (diff) |
*Commend a function because it break build.
--HG--
branch : trunk
Diffstat (limited to 'src/shared/ByteBuffer.h')
-rw-r--r-- | src/shared/ByteBuffer.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/ByteBuffer.h b/src/shared/ByteBuffer.h index 801270fa711..dc90e38e14f 100644 --- a/src/shared/ByteBuffer.h +++ b/src/shared/ByteBuffer.h @@ -228,12 +228,12 @@ class ByteBuffer _rpos += sizeof(T); return r; }; - template<> std::string read<std::string>() + /*template<> std::string read<std::string>() { std::string tmp; *this >> tmp; return tmp; - } + }*/ template <typename T> T read(size_t pos) const { ASSERT(pos + sizeof(T) <= size() || PrintPosError(false,pos,sizeof(T))); |