Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(124)

Unified Diff: src/core/SkTDPQueue.h

Issue 1842753002: Style bikeshed - remove extraneous whitespace (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/core/SkSwizzle.cpp ('k') | src/core/SkTDynamicHash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/core/SkTDPQueue.h
diff --git a/src/core/SkTDPQueue.h b/src/core/SkTDPQueue.h
index 1545f97995371de2509243465cb958c98e765f94..294c9f410bcbea910fb6d96ac4dfa26ff76482e4 100644
--- a/src/core/SkTDPQueue.h
+++ b/src/core/SkTDPQueue.h
@@ -34,7 +34,7 @@ public:
/** Gets the next item in the queue without popping it. */
const T& peek() const { return fArray[0]; }
T& peek() { return fArray[0]; }
-
+
/** Removes the next item. */
void pop() {
this->validate();
@@ -134,7 +134,7 @@ private:
SkASSERT(index >= 0);
do {
int child = LeftOf(index);
-
+
if (child >= fArray.count()) {
// We're a leaf.
this->setIndex(index);
@@ -188,7 +188,7 @@ private:
}
SkTDArray<T> fArray;
-
+
typedef SkNoncopyable INHERITED;
};
« no previous file with comments | « src/core/SkSwizzle.cpp ('k') | src/core/SkTDynamicHash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698