Remove ifdef LLDB_CONFIGURATION_DEBUG directives around the formatter
cache ivars/methods.


git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@184901 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/include/lldb/DataFormatters/FormatCache.h b/include/lldb/DataFormatters/FormatCache.h
index 2e6d555..941b96c 100644
--- a/include/lldb/DataFormatters/FormatCache.h
+++ b/include/lldb/DataFormatters/FormatCache.h
@@ -60,10 +60,8 @@
     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 @@
     void
     Clear ();
     
-#ifdef LLDB_CONFIGURATION_DEBUG
     uint64_t
     GetCacheHits ()
     {
@@ -98,7 +95,6 @@
     {
         return m_cache_misses;
     }
-#endif
 };
 } // namespace lldb_private