diff options
author | 2017-06-08 21:49:14 -0700 | |
---|---|---|
committer | 2017-09-18 11:36:24 -0700 | |
commit | 04c6ab9266876137c9b46b69391aa2820cd56600 (patch) | |
tree | 1580e08b7a8e73197c64b499540ec613b755a6e1 /runtime/entrypoints/entrypoint_utils.h | |
parent | e2abbc604ce003c776c00ecf1293796bb4c4ac5a (diff) |
ART: Forward declarations for InvokeType
Use forward declarations in other header files.
Test: m
Change-Id: I8ef4492b6c48ff20d4d77d0516eacd362ed210bc
Diffstat (limited to 'runtime/entrypoints/entrypoint_utils.h')
-rw-r--r-- | runtime/entrypoints/entrypoint_utils.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/entrypoints/entrypoint_utils.h b/runtime/entrypoints/entrypoint_utils.h index 4f9090815f..d2c98e153e 100644 --- a/runtime/entrypoints/entrypoint_utils.h +++ b/runtime/entrypoints/entrypoint_utils.h @@ -27,7 +27,6 @@ #include "dex_instruction.h" #include "gc/allocator_type.h" #include "handle.h" -#include "invoke_type.h" #include "jvalue.h" namespace art { @@ -41,6 +40,7 @@ namespace mirror { class ArtField; class ArtMethod; +enum InvokeType : uint32_t; class OatQuickMethodHeader; class ScopedObjectAccessAlreadyRunnable; class Thread; |