From 335556d58b52396f1f133033856bf6be397a29b8 Mon Sep 17 00:00:00 2001 From: Christopher Faylor Date: Tue, 4 Feb 2003 03:01:17 +0000 Subject: Eliminate most unneeded this-> pointers throughout. --- winsup/cygwin/pipe.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'winsup/cygwin/pipe.cc') diff --git a/winsup/cygwin/pipe.cc b/winsup/cygwin/pipe.cc index ee1f18386..29a32b566 100644 --- a/winsup/cygwin/pipe.cc +++ b/winsup/cygwin/pipe.cc @@ -44,7 +44,7 @@ fhandler_pipe::lseek (__off64_t offset, int whence) void fhandler_pipe::set_close_on_exec (int val) { - this->fhandler_base::set_close_on_exec (val); + fhandler_base::set_close_on_exec (val); if (guard) set_inheritance (guard, val); if (writepipe_exists) @@ -121,7 +121,7 @@ fhandler_pipe::fixup_after_exec (HANDLE parent) void fhandler_pipe::fixup_after_fork (HANDLE parent) { - this->fhandler_base::fixup_after_fork (parent); + fhandler_base::fixup_after_fork (parent); if (guard) fork_fixup (parent, guard, "guard"); if (writepipe_exists) @@ -132,7 +132,7 @@ fhandler_pipe::fixup_after_fork (HANDLE parent) int fhandler_pipe::dup (fhandler_base *child) { - int res = this->fhandler_base::dup (child); + int res = fhandler_base::dup (child); if (res) return res; -- cgit v1.2.3