remove an assignment which is never used.

This commit is contained in:
Yoichi Hirai 2014-03-28 20:22:00 +09:00 committed by langerhans
parent 6510c1ef3a
commit b4c8ca4f7e

View file

@ -1038,10 +1038,7 @@ public:
if (nReadPosNext >= vch.size())
{
if (nReadPosNext > vch.size())
{
setstate(std::ios::failbit, "CDataStream::ignore() : end of data");
nSize = vch.size() - nReadPos;
}
nReadPos = 0;
vch.clear();
return (*this);