summaryrefslogtreecommitdiffstats
path: root/src/app/fht.cpp
diff options
context:
space:
mode:
authormio <stigma@disroot.org>2024-08-22 19:34:23 +1000
committermio <stigma@disroot.org>2024-08-22 23:15:20 +1000
commited55bf072682ebf73239e74b7e3dd286ed5616a5 (patch)
treef13875c92a1b0cd5ba8d925ac5f2c6413e9ccc6d /src/app/fht.cpp
parent5e965846d17f7053dca99f3366ce5d8f21e8f649 (diff)
downloadcodeine-ed55bf072682ebf73239e74b7e3dd286ed5616a5.tar.gz
codeine-ed55bf072682ebf73239e74b7e3dd286ed5616a5.zip
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 <stigma@disroot.org>
Diffstat (limited to 'src/app/fht.cpp')
-rw-r--r--src/app/fht.cpp6
1 files changed, 3 insertions, 3 deletions
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;