Fix build.
Change-Id: Iafac241cac1b51639a7ef7c694f0abf5c1275e6d
diff --git a/src/oatdump.cc b/src/oatdump.cc
index 2a88e3d..4cb9cf0 100644
--- a/src/oatdump.cc
+++ b/src/oatdump.cc
@@ -102,7 +102,11 @@
private:
- OatDump(const Space& dump_space, std::ostream& os) : dump_space_(dump_space), os_(os) {}
+ OatDump(const Space& dump_space, std::ostream& os) : dump_space_(dump_space), os_(os) {
+ }
+
+ ~OatDump() {
+ }
static void Callback(Object* obj, void* arg) {
DCHECK(obj != NULL);
@@ -315,6 +319,8 @@
private:
const Space& dump_space_;
std::ostream& os_;
+
+ DISALLOW_COPY_AND_ASSIGN(OatDump);
};
int oatdump(int argc, char** argv) {