diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-12-11 22:32:00 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-12-11 22:32:00 +0100 |
commit | 965ae41a23546508b34d6c582973b321c7251ecc (patch) | |
tree | 3e34d66158ad286c4d47afce0e8d72cc337c619c /connectivity | |
parent | ec8af31595fab867abf963ecfd80c6c3ec529948 (diff) |
loplugin:nullptr
Change-Id: Ib3acd5b853283dce2cdcbe72d7992637368fdf6b
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/macab/MacabDriver.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/connectivity/source/drivers/macab/MacabDriver.cxx b/connectivity/source/drivers/macab/MacabDriver.cxx index bb32e6be9cf0..57632e6f798e 100644 --- a/connectivity/source/drivers/macab/MacabDriver.cxx +++ b/connectivity/source/drivers/macab/MacabDriver.cxx @@ -87,7 +87,7 @@ namespace template< typename FUNCTION > void lcl_getFunctionFromModuleOrUnload( oslModule& _rModule, const sal_Char* _pAsciiSymbolName, FUNCTION& _rFunction ) { - _rFunction = NULL; + _rFunction = nullptr; if ( _rModule ) { |