Use int32_t for piece length instead of size_t

This commit is contained in:
Tatsuhiro Tsujikawa 2011-12-08 00:03:25 +09:00
parent 12988e5282
commit 9d15d732ed
45 changed files with 196 additions and 183 deletions

View file

@ -30,7 +30,7 @@ class GZipDecodingStreamFilterTest:public CppUnit::TestFixture {
public:
MockSegment2():positionToWrite_(0) {}
virtual void updateWrittenLength(size_t bytes)
virtual void updateWrittenLength(int32_t bytes)
{
positionToWrite_ += bytes;
}