summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-01-15 22:55:08 +0100
committerStephan Bergmann <sbergman@redhat.com>2012-01-15 22:55:08 +0100
commit2ca0ab44b4c0f028aa246c28da8fbff0c79a87b4 (patch)
treebd1794e59cc997d15bc78d747b314c2ebb18eea3 /stoc
parent2898e58b2adb6d204f4d5399d39014d590e8d6ea (diff)
Clang -Wunused-variable.
Diffstat (limited to 'stoc')
-rw-r--r--stoc/source/security/lru_cache.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/stoc/source/security/lru_cache.h b/stoc/source/security/lru_cache.h
index d4b5a8e79775..6853a374a186 100644
--- a/stoc/source/security/lru_cache.h
+++ b/stoc/source/security/lru_cache.h
@@ -242,6 +242,7 @@ inline void lru_cache< t_key, t_val, t_hashKey, t_equalKey >::set(
#ifdef __CACHE_DIAGNOSE
OSL_ENSURE( insertion.second, "### inserting new cache entry failed?!" );
#endif
+ (void) insertion; // avoid warnings
}
else
{