diff options
author | mio <stigma@disroot.org> | 2024-08-22 19:34:23 +1000 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-08-22 23:12:08 +0900 |
commit | bca2a1a170c5030aeb55b411fd64a4adf02e3434 (patch) | |
tree | 66769d4d979fffce4e2f64316df5dd81fa2de795 /src/app/fht.cpp | |
parent | 55214aea7cf8d37849d1566535a4f13eb04f2528 (diff) | |
download | codeine-bca2a1a170c5030aeb55b411fd64a4adf02e3434.tar.gz codeine-bca2a1a170c5030aeb55b411fd64a4adf02e3434.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>
(cherry picked from commit ed55bf072682ebf73239e74b7e3dd286ed5616a5)
Diffstat (limited to 'src/app/fht.cpp')
-rw-r--r-- | src/app/fht.cpp | 6 |
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; |