Eliminate most unneeded this-> pointers throughout.

This commit is contained in:
Christopher Faylor
2003-02-04 03:01:17 +00:00
parent ad36f7d19a
commit 335556d58b
14 changed files with 37 additions and 33 deletions

View File

@@ -588,7 +588,7 @@ int
fhandler_pipe::ready_for_read (int fd, DWORD howlong)
{
if (!howlong)
return this->fhandler_base::ready_for_read (fd, howlong);
return fhandler_base::ready_for_read (fd, howlong);
get_guard ();
return true;