aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-30 07:01:03 +0000
committerGravatar skia.committer@gmail.com <skia.committer@gmail.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2013-04-30 07:01:03 +0000
commit815211307368b82a8df503432221b80ab0a804c3 (patch)
tree2bedf70fc78f0790e1c9559710816b92f1ebd0ce /tests
parent0cb7df97185d5fc8780e225c912e2bc99a26aa8d (diff)
Sanitizing source files in Skia_Periodic_House_Keeping
git-svn-id: http://skia.googlecode.com/svn/trunk@8919 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'tests')
-rw-r--r--tests/MathTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/MathTest.cpp b/tests/MathTest.cpp
index 4c768d1017..5f694f5c36 100644
--- a/tests/MathTest.cpp
+++ b/tests/MathTest.cpp
@@ -18,7 +18,7 @@ static void test_clz(skiatest::Reporter* reporter) {
REPORTER_ASSERT(reporter, 31 == SkCLZ(1));
REPORTER_ASSERT(reporter, 1 == SkCLZ(1 << 30));
REPORTER_ASSERT(reporter, 0 == SkCLZ(~0U));
-
+
SkRandom rand;
for (int i = 0; i < 1000; ++i) {
uint32_t mask = rand.nextU();