summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Andreas Gampe <agampe@google.com> 2019-05-14 16:16:46 -0700
committer Treehugger Robot <treehugger-gerrit@google.com> 2019-05-16 00:43:06 +0000
commitb79674cf70cabdcbe85de2e45b090f98990d020a (patch)
tree3d4fc3bee4c55d97e6ec3338d23207f4f0f8abc9
parentfc06d35d8d6bea4ef463b147462a5bb68ab20848 (diff)
ART: Forward-declare Signature in art_method.h (iwyu)
Test: mmma art Change-Id: I16e2083db5b52c9373350a1072550d1e83355ab5
-rw-r--r--runtime/art_method-inl.h1
-rw-r--r--runtime/art_method.h2
2 files changed, 2 insertions, 1 deletions
diff --git a/runtime/art_method-inl.h b/runtime/art_method-inl.h
index c25bd00afd..61c261c52c 100644
--- a/runtime/art_method-inl.h
+++ b/runtime/art_method-inl.h
@@ -29,6 +29,7 @@
#include "dex/dex_file_types.h"
#include "dex/invoke_type.h"
#include "dex/primitive.h"
+#include "dex/signature.h"
#include "gc_root-inl.h"
#include "imtable-inl.h"
#include "intrinsics_enum.h"
diff --git a/runtime/art_method.h b/runtime/art_method.h
index e4c21f061d..23c1fe9493 100644
--- a/runtime/art_method.h
+++ b/runtime/art_method.h
@@ -31,7 +31,6 @@
#include "dex/dex_file_structs.h"
#include "dex/modifiers.h"
#include "dex/primitive.h"
-#include "dex/signature.h"
#include "gc_root.h"
#include "obj_ptr.h"
#include "offsets.h"
@@ -51,6 +50,7 @@ class OatQuickMethodHeader;
class ProfilingInfo;
class ScopedObjectAccessAlreadyRunnable;
class ShadowFrame;
+class Signature;
namespace mirror {
class Array;