Changing declaration order of field to correct compilation warnings.

Review URL: http://breakpad.appspot.com/316001

git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@871 4c0a9323-5329-0410-9bdc-e9ce6186880e
This commit is contained in:
qsr@chromium.org 2011-10-18 07:35:46 +00:00
parent bf407c0c77
commit 38e7f8b51b

View File

@ -90,14 +90,14 @@ class StackwalkerARM : public Stackwalker {
// be returned by GetContextFrame.
const MDRawContextARM *context_;
// The register to use a as frame pointer. The value is -1 if frame pointer
// cannot be used.
int fp_register_;
// Validity mask for youngest stack frame. This is always
// CONTEXT_VALID_ALL in real use; it is only changeable for the sake of
// unit tests.
int context_frame_validity_;
// The register to use a as frame pointer. The value is -1 if frame pointer
// cannot be used.
int fp_register_;
};