diff options
| author | 2024-01-10 14:04:28 +0000 | |
|---|---|---|
| committer | 2024-01-12 14:42:57 +0000 | |
| commit | 17160a834d37fbca76444477d07b772ab46454b6 (patch) | |
| tree | 11f5ba253fd74d0aa1ff9f7b5cdec29a6e3ee43f /runtime/interpreter/interpreter_cache.h | |
| parent | 0e13902e738201431c3a5e99bc067fd78a211295 (diff) | |
Add visibility attributes in runtime/interpreter
Bug: 260881207
Test: presubmit
Test: abtd app_compat_drm
Test: abtd app_compat_top_100
Test: abtd app_compat_banking
Change-Id: I86b9f2d2bddeb28dafc1a3cd9fa90c00f2f162fc
Diffstat (limited to 'runtime/interpreter/interpreter_cache.h')
| -rw-r--r-- | runtime/interpreter/interpreter_cache.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/interpreter/interpreter_cache.h b/runtime/interpreter/interpreter_cache.h index 8714bc613c..410fdf58ab 100644 --- a/runtime/interpreter/interpreter_cache.h +++ b/runtime/interpreter/interpreter_cache.h @@ -23,7 +23,7 @@ #include "base/bit_utils.h" #include "base/macros.h" -namespace art { +namespace art HIDDEN { class Thread; @@ -60,7 +60,7 @@ class ALIGNED(16) InterpreterCache { } // Clear the whole cache. It requires the owning thread for DCHECKs. - void Clear(Thread* owning_thread); + EXPORT void Clear(Thread* owning_thread); ALWAYS_INLINE bool Get(Thread* self, const void* key, /* out */ size_t* value); |