From 7f686d1953daccc411215294fcf6147adaef5349 Mon Sep 17 00:00:00 2001 From: mmentovai Date: Wed, 6 Sep 2006 21:37:46 +0000 Subject: [PATCH] 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 --- src/processor/stackwalker_x86.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/processor/stackwalker_x86.h b/src/processor/stackwalker_x86.h index 74d893a2..6bb819de 100644 --- a/src/processor/stackwalker_x86.h +++ b/src/processor/stackwalker_x86.h @@ -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.