*Commend a function because it break build.

--HG--
branch : trunk
This commit is contained in:
megamage
2009-03-18 20:22:42 -06:00
parent 82777554a0
commit f8bb0cd167

View File

@@ -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)));