Index: tools/debugger/SkDrawCommand.cpp |
diff --git a/tools/debugger/SkDrawCommand.cpp b/tools/debugger/SkDrawCommand.cpp |
index e9cdd32e085df74068808eb367b746203697ac2c..bca5186d8af4e37748dfac1af4660d6b0bdd1096 100644 |
--- a/tools/debugger/SkDrawCommand.cpp |
+++ b/tools/debugger/SkDrawCommand.cpp |
@@ -567,13 +567,14 @@ static Json::Value make_json_pointmode(SkCanvas::PointMode mode) { |
}; |
} |
-void store_scalar(Json::Value* target, const char* key, SkScalar value, SkScalar defaultValue) { |
+static void store_scalar(Json::Value* target, const char* key, SkScalar value, |
+ SkScalar defaultValue) { |
if (value != defaultValue) { |
(*target)[key] = Json::Value(value); |
} |
} |
-void store_bool(Json::Value* target, const char* key, bool value, bool defaultValue) { |
+static void store_bool(Json::Value* target, const char* key, bool value, bool defaultValue) { |
if (value != defaultValue) { |
(*target)[key] = Json::Value(value); |
} |