diff options
| author | 2016-04-30 18:23:42 +0100 | |
|---|---|---|
| committer | 2016-04-30 18:50:44 +0100 | |
| commit | 505d0768f8392e3c4775425dd97f41e1c829ef44 (patch) | |
| tree | 55dfa35f2e180b4186baf00ffbfd2ee38c0f1c18 /src/modules/dcc/DccThread.cpp | |
| parent | Update my clang-format to 3.8.0 (diff) | |
| download | KVIrc-505d0768f8392e3c4775425dd97f41e1c829ef44.tar.gz KVIrc-505d0768f8392e3c4775425dd97f41e1c829ef44.tar.bz2 KVIrc-505d0768f8392e3c4775425dd97f41e1c829ef44.zip | |
Apply clang-tidy: modernize-use-nullptr
Diffstat (limited to 'src/modules/dcc/DccThread.cpp')
| -rw-r--r-- | src/modules/dcc/DccThread.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/dcc/DccThread.cpp b/src/modules/dcc/DccThread.cpp index d3ec9af52..45e393b44 100644 --- a/src/modules/dcc/DccThread.cpp +++ b/src/modules/dcc/DccThread.cpp @@ -44,7 +44,7 @@ DccThread::DccThread(QObject * par, kvi_socket_t fd) m_pMutex = new KviMutex(); #ifdef COMPILE_SSL_SUPPORT // qDebug("CLEARING SSL IN DccThread constructor"); - m_pSSL = 0; + m_pSSL = nullptr; #endif } @@ -53,7 +53,7 @@ DccThread::~DccThread() #ifdef COMPILE_SSL_SUPPORT if(m_pSSL) KviSSLMaster::freeSSL(m_pSSL); - m_pSSL = 0; + m_pSSL = nullptr; #endif if(m_fd != KVI_INVALID_SOCKET) kvi_socket_close(m_fd); |
