aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/PointTest.cpp
diff options
context:
space:
mode:
authorGravatar halcanary <halcanary@google.com>2015-08-27 07:41:13 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-08-27 07:41:16 -0700
commit96fcdcc219d2a0d3579719b84b28bede76efba64 (patch)
tree0ec5ea0193d8292df8bf5ed9dd8498a5eb5763dd /tests/PointTest.cpp
parent435af2f736c85c3274a0c6760a3523810750d237 (diff)
Style Change: NULL->nullptr
Diffstat (limited to 'tests/PointTest.cpp')
-rw-r--r--tests/PointTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/PointTest.cpp b/tests/PointTest.cpp
index 08ce7208eb..84ea865827 100644
--- a/tests/PointTest.cpp
+++ b/tests/PointTest.cpp
@@ -74,7 +74,7 @@ static float force_as_float(skiatest::Reporter* reporter, float value) {
// even the pair of memcpy calls are not sufficient, since those seem to
// be no-op'd, so we add a runtime tests (just like get_value) to force
// the compiler to give us an actual float.
- if (NULL == reporter) {
+ if (nullptr == reporter) {
storage = ~storage;
}
memcpy(&value, &storage, 4);