mirror of
https://git.suyu.dev/suyu/breakpad.git
synced 2026-03-12 02:52:58 +00:00
fix pointer style to match the style guide
We do this in a lot of places, but we're inconsistent. Normalize the code to the Google C++ style guide. Change-Id: Ic2aceab661ce8f6b993dda21b1cdf5d2198dcbbf Reviewed-on: https://chromium-review.googlesource.com/c/breakpad/breakpad/+/2262932 Reviewed-by: Sterling Augustine <saugustine@google.com> Reviewed-by: Mark Mentovai <mark@chromium.org>
This commit is contained in:
@@ -113,9 +113,9 @@ struct WindowsFrameInfo {
|
||||
// otherwise. type, rva and code_size are present in the STACK line,
|
||||
// but not the StackFrameInfo structure, so return them as outparams.
|
||||
static WindowsFrameInfo *ParseFromString(const string string,
|
||||
int &type,
|
||||
uint64_t &rva,
|
||||
uint64_t &code_size) {
|
||||
int& type,
|
||||
uint64_t& rva,
|
||||
uint64_t& code_size) {
|
||||
// The format of a STACK WIN record is documented at:
|
||||
//
|
||||
// https://chromium.googlesource.com/breakpad/breakpad/+/master/docs/symbol_files.md
|
||||
@@ -160,7 +160,7 @@ struct WindowsFrameInfo {
|
||||
}
|
||||
|
||||
// CopyFrom makes "this" WindowsFrameInfo object identical to "that".
|
||||
void CopyFrom(const WindowsFrameInfo &that) {
|
||||
void CopyFrom(const WindowsFrameInfo& that) {
|
||||
type_ = that.type_;
|
||||
valid = that.valid;
|
||||
prolog_size = that.prolog_size;
|
||||
|
||||
Reference in New Issue
Block a user