diff options
Diffstat (limited to 'runtime/cha.h')
| -rw-r--r-- | runtime/cha.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/runtime/cha.h b/runtime/cha.h index d9692a684e..81458db601 100644 --- a/runtime/cha.h +++ b/runtime/cha.h @@ -17,7 +17,6 @@ #ifndef ART_RUNTIME_CHA_H_ #define ART_RUNTIME_CHA_H_ -#include "art_method.h" #include "base/enums.h" #include "base/mutex.h" #include "handle.h" @@ -28,6 +27,8 @@ namespace art { +class ArtMethod; + /** * Class Hierarchy Analysis (CHA) tries to devirtualize virtual calls into * direct calls based on the info generated by analyzing class hierarchies. |