diff options
author | Noel Grandin <noel@peralex.com> | 2016-06-08 10:32:38 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-06-08 10:32:38 +0200 |
commit | eb1afabe91f3d8df716587c2c58d164222bc14e8 (patch) | |
tree | 3dcd7eb08fbe3e28f7988900968d2b2874abda53 /include | |
parent | 4cad126dc11a4798d5554da55b94ef51e0b0e21d (diff) |
use NULL instead of nullptr in external facing code
Change-Id: I9f0846f06e0b42af841d575de5196fae78840c53
Diffstat (limited to 'include')
-rw-r--r-- | include/salhelper/dynload.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/salhelper/dynload.hxx b/include/salhelper/dynload.hxx index e157c016fef6..6284ecb2bb23 100644 --- a/include/salhelper/dynload.hxx +++ b/include/salhelper/dynload.hxx @@ -148,7 +148,7 @@ public: { if( m_pLoader ) if (m_pLoader->release()==0) - m_pStaticLoader = nullptr; + m_pStaticLoader = NULL; } /// Assign operator |