summaryrefslogtreecommitdiff
path: root/stoc/source/corereflection/lrucache.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'stoc/source/corereflection/lrucache.hxx')
-rw-r--r--stoc/source/corereflection/lrucache.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/stoc/source/corereflection/lrucache.hxx b/stoc/source/corereflection/lrucache.hxx
index 3bfb878b72ae..13f4803ca085 100644
--- a/stoc/source/corereflection/lrucache.hxx
+++ b/stoc/source/corereflection/lrucache.hxx
@@ -90,9 +90,9 @@ inline LRU_Cache< t_Key, t_Val, t_KeyHash >::LRU_Cache( sal_Int32 nCachedElement
#else
: _nCachedElements( nCachedElements )
#endif
- , _pBlock( 0 )
- , _pHead( 0 )
- , _pTail( 0 )
+ , _pBlock( nullptr )
+ , _pHead( nullptr )
+ , _pTail( nullptr )
{
if (_nCachedElements > 0)
{