diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-09 19:45:29 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2014-01-09 19:45:29 +0000 |
commit | fe5824af296c5b7e7f3f14e75124712eabea34e2 (patch) | |
tree | 7d642a1ba8e8858230561efbb2bc33ef21f75cf2 /tests | |
parent | ed9866cc8ad9d9687eb0571e45128f1c9422d3f4 (diff) |
Fix for Mac-specific compilation issue in r13000
git-svn-id: http://skia.googlecode.com/svn/trunk@13001 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r-- | tests/PictureTest.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PictureTest.cpp b/tests/PictureTest.cpp index e50f74e79a..207e610e54 100644 --- a/tests/PictureTest.cpp +++ b/tests/PictureTest.cpp @@ -35,7 +35,7 @@ static void make_bm(SkBitmap* bm, int w, int h, SkColor color, bool immutable) { } } -void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) { +static void make_checkerboard(SkBitmap* bm, int w, int h, bool immutable) { SkASSERT(w % 2 == 0); SkASSERT(h % 2 == 0); bm->setConfig(SkBitmap::kA8_Config, w, h); |