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

@@ -74,7 +74,7 @@ UInt32 CSocketInputStream::read(
n = count;
}
if (n > 0) {
::memcpy(dst, m_buffer.peek(n), n);
memcpy(dst, m_buffer.peek(n), n);
m_buffer.pop(n);
}