aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/ScalarTest.cpp
diff options
context:
space:
mode:
authorGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-16 15:50:18 +0000
committerGravatar robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2012-04-16 15:50:18 +0000
commit6853e808a464ca75ff1328338d1eb55ff27c4337 (patch)
treeb87b0d4374b5fd4171fd8eefe4de1c85da65c53a /tests/ScalarTest.cpp
parent4f8975ea0fdd2127cc2c0611966204b36f1e75ce (diff)
Addressed more Windows compiler complaint issues
Diffstat (limited to 'tests/ScalarTest.cpp')
-rw-r--r--tests/ScalarTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ScalarTest.cpp b/tests/ScalarTest.cpp
index 981fb0f5f2..cc88e7420f 100644
--- a/tests/ScalarTest.cpp
+++ b/tests/ScalarTest.cpp
@@ -20,7 +20,7 @@ static bool isFinite_int(float x) {
}
static bool isFinite_float(float x) {
- return sk_float_isfinite(x);
+ return SkToBool(sk_float_isfinite(x));
}
static bool isFinite_mulzero(float x) {