From ed55bf072682ebf73239e74b7e3dd286ed5616a5 Mon Sep 17 00:00:00 2001 From: mio Date: Thu, 22 Aug 2024 19:34:23 +1000 Subject: Use nullptr instead of NULL/0 pointer in C++ files See: https://mirror.git.trinitydesktop.org/gitea/TDE/tde/issues/73 Signed-off-by: mio --- src/app/fht.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/app/fht.cpp') diff --git a/src/app/fht.cpp b/src/app/fht.cpp index 4d03851..f678bee 100644 --- a/src/app/fht.cpp +++ b/src/app/fht.cpp @@ -24,9 +24,9 @@ FHT::FHT(int n) : - m_buf(0), - m_tab(0), - m_log(0) + m_buf(nullptr), + m_tab(nullptr), + m_log(nullptr) { if (n < 3) { m_num = 0; -- cgit v1.2.3