From 09b056975dacd1f0f815ad820b6dc9913b0118a3 Mon Sep 17 00:00:00 2001 From: Mike Frysinger Date: Tue, 23 Jun 2020 18:55:43 -0400 Subject: 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 Reviewed-by: Mark Mentovai --- src/processor/static_map-inl.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/processor/static_map-inl.h') diff --git a/src/processor/static_map-inl.h b/src/processor/static_map-inl.h index e6aac6ab..75a8a335 100644 --- a/src/processor/static_map-inl.h +++ b/src/processor/static_map-inl.h @@ -59,7 +59,7 @@ StaticMap::StaticMap(const char* raw_data) // find(), lower_bound() and upper_bound() implement binary search algorithm. template StaticMapIterator -StaticMap::find(const Key &key) const { +StaticMap::find(const Key& key) const { int begin = 0; int end = num_nodes_; int middle; @@ -80,7 +80,7 @@ StaticMap::find(const Key &key) const { template StaticMapIterator -StaticMap::lower_bound(const Key &key) const { +StaticMap::lower_bound(const Key& key) const { int begin = 0; int end = num_nodes_; int middle; @@ -101,7 +101,7 @@ StaticMap::lower_bound(const Key &key) const { template StaticMapIterator -StaticMap::upper_bound(const Key &key) const { +StaticMap::upper_bound(const Key& key) const { int begin = 0; int end = num_nodes_; int middle; -- cgit v1.2.1