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

@ -368,7 +368,7 @@ fhandler_disk_file::open (path_conv *real_path, int flags, mode_t mode)
set_has_acls (real_path->has_acls ());
set_isremote (real_path->isremote ());
int res = this->fhandler_base::open (real_path, flags | O_DIROPEN, mode);
int res = fhandler_base::open (real_path, flags | O_DIROPEN, mode);
if (!res)
goto out;
@ -399,7 +399,7 @@ out:
int
fhandler_disk_file::close ()
{
int res = this->fhandler_base::close ();
int res = fhandler_base::close ();
if (!res)
cygwin_shared->delqueue.process_queue ();
return res;