removed unnecessary global scoping operators.

This commit is contained in:
crs
2001-10-25 22:17:17 +00:00
parent dbdf20e804
commit ef3149cead
8 changed files with 71 additions and 70 deletions

View File

@@ -61,7 +61,7 @@ UInt32 CBufferedInputStream::readNoLock(
}
if (n > 0) {
if (dst != NULL) {
::memcpy(dst, m_buffer.peek(n), n);
memcpy(dst, m_buffer.peek(n), n);
}
m_buffer.pop(n);
}