diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:13:11 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-11-10 10:31:21 +0100 |
commit | bf3f8403029fcea9ce7d53078697efb24c09a75b (patch) | |
tree | 3f99977435c7794529d3975c798afceb86444deb /include/cppuhelper/interfacecontainer.hxx | |
parent | 4730b58d9989512ed25790768ba78decfde7d667 (diff) |
loplugin:nullptr (automatic rewrite)
Change-Id: I62a63915dfc0bced2cd8ffe3999cbde5c4d97b0b
Diffstat (limited to 'include/cppuhelper/interfacecontainer.hxx')
-rw-r--r-- | include/cppuhelper/interfacecontainer.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/cppuhelper/interfacecontainer.hxx b/include/cppuhelper/interfacecontainer.hxx index a87bdccc74cd..9b858f9b2e54 100644 --- a/include/cppuhelper/interfacecontainer.hxx +++ b/include/cppuhelper/interfacecontainer.hxx @@ -90,7 +90,7 @@ OInterfaceContainerHelper * OMultiTypeInterfaceContainerHelperVar< key , hashImp typename InterfaceMap::iterator iter = find( rKey ); if( iter != m_pMap->end() ) return static_cast<OInterfaceContainerHelper*>( (*iter).second ); - return 0; + return NULL; } |