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/fhandler_windows.cc | |
parent | ad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff) | |
download | newlib-335556d58b52396f1f133033856bf6be397a29b8.zip newlib-335556d58b52396f1f133033856bf6be397a29b8.tar.gz newlib-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2 |
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/fhandler_windows.cc')
-rw-r--r-- | winsup/cygwin/fhandler_windows.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/fhandler_windows.cc b/winsup/cygwin/fhandler_windows.cc index d6b3059..9d3e07e 100644 --- a/winsup/cygwin/fhandler_windows.cc +++ b/winsup/cygwin/fhandler_windows.cc @@ -128,9 +128,9 @@ void fhandler_windows::set_close_on_exec (int val) { if (get_handle ()) - this->fhandler_base::set_close_on_exec (val); + fhandler_base::set_close_on_exec (val); else - this->fhandler_base::set_close_on_exec_flag (val); + fhandler_base::set_close_on_exec_flag (val); void *h = hWnd_; if (h) set_inheritance (h, val); @@ -140,7 +140,7 @@ void fhandler_windows::fixup_after_fork (HANDLE parent) { if (get_handle ()) - this->fhandler_base::fixup_after_fork (parent); + fhandler_base::fixup_after_fork (parent); void *h = hWnd_; if (h) fork_fixup (parent, h, "hWnd_"); |