Switch to UniquePtr.
Only one use of scoped_ptr was incorrect (but then again, I spent an afternoon
with valgrind finding and fixing them just last week).
Change-Id: If5ec1c8aa0794a4f652bfd1c0fffccf95facdc40
diff --git a/src/dex_verifier.h b/src/dex_verifier.h
index 29dc140..e909b35 100644
--- a/src/dex_verifier.h
+++ b/src/dex_verifier.h
@@ -3,9 +3,10 @@
#ifndef ART_SRC_DEX_VERIFY_H_
#define ART_SRC_DEX_VERIFY_H_
+#include "dex_file.h"
+#include "dex_instruction.h"
#include "macros.h"
#include "object.h"
-#include "dex_instruction.h"
namespace art {