Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
committerChristopher Faylor <me@cgf.cx>2003-02-04 06:01:17 +0300
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/pipe.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/pipe.cc')
-rw-r--r--winsup/cygwin/pipe.cc6
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;