summaryrefslogtreecommitdiff
path: root/src/pathfinder/pf_performance_timer.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/pathfinder/pf_performance_timer.hpp')
-rw-r--r--src/pathfinder/pf_performance_timer.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pathfinder/pf_performance_timer.hpp b/src/pathfinder/pf_performance_timer.hpp
index 808542d25..c06ef815e 100644
--- a/src/pathfinder/pf_performance_timer.hpp
+++ b/src/pathfinder/pf_performance_timer.hpp
@@ -53,7 +53,7 @@ struct CPerfStartReal
inline CPerfStartReal(CPerformanceTimer& perf) : m_pperf(&perf)
{
- if (m_pperf != NULL) m_pperf->Start();
+ if (m_pperf != nullptr) m_pperf->Start();
}
inline ~CPerfStartReal()
@@ -63,9 +63,9 @@ struct CPerfStartReal
inline void Stop()
{
- if (m_pperf != NULL) {
+ if (m_pperf != nullptr) {
m_pperf->Stop();
- m_pperf = NULL;
+ m_pperf = nullptr;
}
}
};