diff options
author | 2017-06-08 21:49:14 -0700 | |
---|---|---|
committer | 2017-09-18 11:36:24 -0700 | |
commit | 04c6ab9266876137c9b46b69391aa2820cd56600 (patch) | |
tree | 1580e08b7a8e73197c64b499540ec613b755a6e1 /compiler/driver/compiler_driver.h | |
parent | e2abbc604ce003c776c00ecf1293796bb4c4ac5a (diff) |
ART: Forward declarations for InvokeType
Use forward declarations in other header files.
Test: m
Change-Id: I8ef4492b6c48ff20d4d77d0516eacd362ed210bc
Diffstat (limited to 'compiler/driver/compiler_driver.h')
-rw-r--r-- | compiler/driver/compiler_driver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/driver/compiler_driver.h b/compiler/driver/compiler_driver.h index 5043884836..46aaba4669 100644 --- a/compiler/driver/compiler_driver.h +++ b/compiler/driver/compiler_driver.h @@ -34,7 +34,6 @@ #include "dex_file.h" #include "dex_file_types.h" #include "driver/compiled_method_storage.h" -#include "invoke_type.h" #include "jit/profile_compilation_info.h" #include "method_reference.h" #include "mirror/class.h" // For mirror::Class::Status. @@ -62,6 +61,7 @@ class DexCompilationUnit; struct InlineIGetIPutData; class InstructionSetFeatures; class InternTable; +enum InvokeType : uint32_t; class ParallelCompilationManager; class ScopedObjectAccess; template <class Allocator> class SrcMap; |