diff options
author | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2003-02-04 03:01:17 +0000 |
commit | 335556d58b52396f1f133033856bf6be397a29b8 (patch) | |
tree | ecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/pipe.cc | |
parent | ad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff) | |
download | cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2 cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip |
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r-- | winsup/cygwin/pipe.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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; |