From 53d0f69d35375fe2ffd119ac7e4898083c0e071c Mon Sep 17 00:00:00 2001 From: mmentovai Date: Thu, 7 Sep 2006 15:56:38 +0000 Subject: Conform to style guidelines. - In class definitions, one-space indent for public/protected/private. - Multi-line initializer format puts comma at end of line. Also: - Eliminate the long list of friends in Minidump by making swap() public. (People who need to access unknown stream types directly will need access to swap() too.) git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@16 4c0a9323-5329-0410-9bdc-e9ce6186880e --- src/processor/stackwalker_x86.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/processor/stackwalker_x86.cc') diff --git a/src/processor/stackwalker_x86.cc b/src/processor/stackwalker_x86.cc index d3360caf..4e43c6ff 100644 --- a/src/processor/stackwalker_x86.cc +++ b/src/processor/stackwalker_x86.cc @@ -29,8 +29,8 @@ namespace google_airbag { StackwalkerX86::StackwalkerX86(MinidumpContext* context, MemoryRegion* memory, MinidumpModuleList* modules) - : Stackwalker(memory, modules) - , last_frame_pointer_(0) { + : Stackwalker(memory, modules), + last_frame_pointer_(0) { if (memory_->GetBase() + memory_->GetSize() - 1 > 0xffffffff) { // The x86 is a 32-bit CPU, the limits of the supplied stack are invalid. // Mark memory_ = NULL, which will cause stackwalking to fail. -- cgit v1.2.1