summaryrefslogtreecommitdiffstats
path: root/lldb
diff options
context:
space:
mode:
authorJason Molenda <jmolenda@apple.com>2013-06-26 01:51:03 +0000
committerJason Molenda <jmolenda@apple.com>2013-06-26 01:51:03 +0000
commitbd4dfade51c6f27d7a77af98caddbb66651e95d9 (patch)
tree4d23b98b354bd6bdd087740e956465c49b275ccb /lldb
parentc2a96407c5fc10198a8640445c2b44d057addd26 (diff)
downloadbcm5719-llvm-bd4dfade51c6f27d7a77af98caddbb66651e95d9.tar.gz
bcm5719-llvm-bd4dfade51c6f27d7a77af98caddbb66651e95d9.zip
Remove ifdef LLDB_CONFIGURATION_DEBUG directives around the formatter
cache ivars/methods. llvm-svn: 184901
Diffstat (limited to 'lldb')
-rw-r--r--lldb/include/lldb/DataFormatters/FormatCache.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/lldb/include/lldb/DataFormatters/FormatCache.h b/lldb/include/lldb/DataFormatters/FormatCache.h
index 2e6d5551add..941b96c1fac 100644
--- a/lldb/include/lldb/DataFormatters/FormatCache.h
+++ b/lldb/include/lldb/DataFormatters/FormatCache.h
@@ -60,10 +60,8 @@ private:
CacheMap m_map;
Mutex m_mutex;
-#ifdef LLDB_CONFIGURATION_DEBUG
uint64_t m_cache_hits;
uint64_t m_cache_misses;
-#endif
Entry&
GetEntry (const ConstString& type);
@@ -86,7 +84,6 @@ public:
void
Clear ();
-#ifdef LLDB_CONFIGURATION_DEBUG
uint64_t
GetCacheHits ()
{
@@ -98,7 +95,6 @@ public:
{
return m_cache_misses;
}
-#endif
};
} // namespace lldb_private
OpenPOWER on IntegriCloud