aboutsummaryrefslogtreecommitdiffstats
path: root/fnet/src/tests/locking/castspeed.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'fnet/src/tests/locking/castspeed.cpp')
-rw-r--r--fnet/src/tests/locking/castspeed.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/fnet/src/tests/locking/castspeed.cpp b/fnet/src/tests/locking/castspeed.cpp
index 874769a7579..7fe360b3caf 100644
--- a/fnet/src/tests/locking/castspeed.cpp
+++ b/fnet/src/tests/locking/castspeed.cpp
@@ -19,7 +19,7 @@ class C: public A
public:
B *otherB;
virtual B* asB() { return otherB; }
- C() : otherB(NULL) {}
+ C() : otherB(nullptr) {}
};
class B: public C