aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/HashTest.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/HashTest.cpp
parent435af2f736c85c3274a0c6760a3523810750d237 (diff)
Style Change: NULL->nullptr
Diffstat (limited to 'tests/HashTest.cpp')
-rw-r--r--tests/HashTest.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/HashTest.cpp b/tests/HashTest.cpp
index f53faaf864..c90c377cc2 100644
--- a/tests/HashTest.cpp
+++ b/tests/HashTest.cpp
@@ -94,7 +94,7 @@ namespace {
class CopyCounter {
public:
- CopyCounter() : fID(0), fCounter(NULL) {}
+ CopyCounter() : fID(0), fCounter(nullptr) {}
CopyCounter(uint32_t id, uint32_t* counter) : fID(id), fCounter(counter) {}