Conform to style guidelines: methods overriding virtual methods should also be declared virtual.
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@14 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
parent
73badfc376
commit
7f686d1953
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ class StackwalkerX86 : public Stackwalker {
|
|||
private:
|
||||
// Implementation of Stackwalker, using x86 context (%ebp, %eip) and
|
||||
// stack conventions (saved %ebp at [%ebp], saved %eip at 4[%ebp]).
|
||||
bool GetContextFrame(StackFrame* frame);
|
||||
bool GetCallerFrame(StackFrame* frame);
|
||||
virtual bool GetContextFrame(StackFrame* frame);
|
||||
virtual bool GetCallerFrame(StackFrame* frame);
|
||||
|
||||
// Stores the CPU context corresponding to the innermost stack frame to
|
||||
// be returned by GetContextFrame.
|
||||
|
|
Loading…
Reference in a new issue