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;
|
CacheMap m_map;
|
||||||
Mutex m_mutex;
|
Mutex m_mutex;
|
||||||
|
|
||||||
#ifdef LLDB_CONFIGURATION_DEBUG
|
|
||||||
uint64_t m_cache_hits;
|
uint64_t m_cache_hits;
|
||||||
uint64_t m_cache_misses;
|
uint64_t m_cache_misses;
|
||||||
#endif
|
|
||||||
|
|
||||||
Entry&
|
Entry&
|
||||||
GetEntry (const ConstString& type);
|
GetEntry (const ConstString& type);
|
||||||
|
@ -86,7 +84,6 @@ public:
|
||||||
void
|
void
|
||||||
Clear ();
|
Clear ();
|
||||||
|
|
||||||
#ifdef LLDB_CONFIGURATION_DEBUG
|
|
||||||
uint64_t
|
uint64_t
|
||||||
GetCacheHits ()
|
GetCacheHits ()
|
||||||
{
|
{
|
||||||
|
@ -98,7 +95,6 @@ public:
|
||||||
{
|
{
|
||||||
return m_cache_misses;
|
return m_cache_misses;
|
||||||
}
|
}
|
||||||
#endif
|
|
||||||
};
|
};
|
||||||
} // namespace lldb_private
|
} // namespace lldb_private
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue