summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/exceptions.cc
diff options
context:
space:
mode:
authorChristopher Faylor <me@cgf.cx>2003-02-04 03:01:17 +0000
committerChristopher Faylor <me@cgf.cx>2003-02-04 03:01:17 +0000
commit335556d58b52396f1f133033856bf6be397a29b8 (patch)
treeecec38e220fee1a21884cb97b752d8e79c0314b7 /winsup/cygwin/exceptions.cc
parentad36f7d19a9275b4b2faff2c5bedd38a834c5a0a (diff)
downloadcygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.gz
cygnal-335556d58b52396f1f133033856bf6be397a29b8.tar.bz2
cygnal-335556d58b52396f1f133033856bf6be397a29b8.zip
Eliminate most unneeded this-> pointers throughout.
Diffstat (limited to 'winsup/cygwin/exceptions.cc')
-rw-r--r--winsup/cygwin/exceptions.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/exceptions.cc b/winsup/cygwin/exceptions.cc
index 877b02d58..84b2f1751 100644
--- a/winsup/cygwin/exceptions.cc
+++ b/winsup/cygwin/exceptions.cc
@@ -240,7 +240,7 @@ public:
void init (DWORD, bool, bool); /* Called the first time that stack info is needed */
/* Postfix ++ iterates over the stack, returning zero when nothing is left. */
- int operator ++(int) { return this->walk (); }
+ int operator ++(int) { return walk (); }
};
/* The number of parameters used in STACKFRAME */