forked from OSchip/llvm-project
Remove ifdef LLDB_CONFIGURATION_DEBUG directives around the formatter
cache ivars/methods. llvm-svn: 184901
This commit is contained in:
parent
c2a96407c5
commit
bd4dfade51
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue