diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:22:15 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:35 +0100 |
commit | de63cac20fba1e7661687a4f1c1ce91182f4dfa0 (patch) | |
tree | 5350f357dbf174ccd167e2af3ae58a18698306d7 /include | |
parent | 26f05d59bc1c25b8a0d19be7f4738fd12e557001 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: If341fc7d18bb6f07d76dd259f5dd77b447c93566
Diffstat (limited to 'include')
-rw-r--r-- | include/salhelper/singletonref.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/salhelper/singletonref.hxx b/include/salhelper/singletonref.hxx index 7b2df10fa9f5..83bbf34ba6ac 100644 --- a/include/salhelper/singletonref.hxx +++ b/include/salhelper/singletonref.hxx @@ -185,7 +185,7 @@ class SingletonRef }; template< class SingletonClass > -SingletonClass* SingletonRef< SingletonClass >::m_pInstance = 0; +SingletonClass* SingletonRef< SingletonClass >::m_pInstance = NULL; template< class SingletonClass > sal_Int32 SingletonRef< SingletonClass >::m_nRef = 0; |