aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/sk_tool_utils.h
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2016-03-29 09:03:52 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-03-29 09:03:53 -0700
commit9d524f22bfde5dc3dc8f48e1be39bdebd3bb0304 (patch)
treefc75ea6f8bc83b552d9ac9c9b4ac0d5a967ee5ac /tools/sk_tool_utils.h
parente577693b3be06d90c824538e7eac0b25b0e02a99 (diff)
Style bikeshed - remove extraneous whitespace
Diffstat (limited to 'tools/sk_tool_utils.h')
-rw-r--r--tools/sk_tool_utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/sk_tool_utils.h b/tools/sk_tool_utils.h
index 1e67afb6d2..1d80731fd4 100644
--- a/tools/sk_tool_utils.h
+++ b/tools/sk_tool_utils.h
@@ -167,13 +167,13 @@ namespace sk_tool_utils {
static void SetTempMark(TopoTestNode* node) { node->fTempMark = true; }
static void ResetTempMark(TopoTestNode* node) { node->fTempMark = false; }
static bool IsTempMarked(TopoTestNode* node) { return node->fTempMark; }
- static void Output(TopoTestNode* node, int outputPos) {
+ static void Output(TopoTestNode* node, int outputPos) {
SkASSERT(-1 != outputPos);
- node->fOutputPos = outputPos;
+ node->fOutputPos = outputPos;
}
static bool WasOutput(TopoTestNode* node) { return (-1 != node->fOutputPos); }
static int NumDependencies(TopoTestNode* node) { return node->fDependencies.count(); }
- static TopoTestNode* Dependency(TopoTestNode* node, int index) {
+ static TopoTestNode* Dependency(TopoTestNode* node, int index) {
return node->fDependencies[index];
}