Clean up white space.

This commit is contained in:
Yao Wei Tjong 姚伟忠 2019-05-04 13:04:49 +08:00
parent db055a02d2
commit bea90775a9
No known key found for this signature in database
GPG Key ID: 8C8F45FBA88EEDC6
2 changed files with 2 additions and 2 deletions

View File

@ -110,7 +110,7 @@ unsigned MemoryBuffer::Write(const void* data, unsigned size)
unsigned char* destPtr = &buffer_[position_];
position_ += size;
memcpy(destPtr, srcPtr, size);
memcpy(destPtr, srcPtr, size);
return size;
}

View File

@ -99,7 +99,7 @@ unsigned VectorBuffer::Write(const void* data, unsigned size)
unsigned char* destPtr = &buffer_[position_];
position_ += size;
memcpy(destPtr, srcPtr, size);
memcpy(destPtr, srcPtr, size);
return size;
}