From f541b99855bd70781f8d7d655ab259ff9eb596f0 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 11 Jul 2016 14:32:07 +0200 Subject: loplugin:nullptr: Better heuristic to determine code shared between C and C++ Change-Id: I51e1c5fa4639e51fac90f92adf3d87d12960d589 --- stoc/source/security/lru_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'stoc') diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h index 78523c52d3d4..d61877314eb6 100644 --- a/stoc/source/security/lru_cache.h +++ b/stoc/source/security/lru_cache.h @@ -90,7 +90,7 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::setSize( { m_key2element.clear(); delete [] m_block; - m_block = NULL; + m_block = nullptr; m_size = size; if (0 < m_size) -- cgit