Eliminate most unneeded this-> pointers throughout.

This commit is contained in:
Christopher Faylor
2003-02-04 03:01:17 +00:00
parent ad36f7d19a
commit 335556d58b
14 changed files with 37 additions and 33 deletions

View File

@ -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 */