From 9758f79a6c1ef7f662caca9c1df39de1934166b8 Mon Sep 17 00:00:00 2001 From: Ian Rogers Date: Thu, 13 Mar 2014 09:02:55 -0700 Subject: Implement FINAL/OVERRIDE for clang. Separate declaration from definition in certain places to work-around issues with clang. Remove bogus lock annotation at definition in compilers.cc that is already present at the declaration. Remove duplicate definition of ClassReference. Change-Id: I5368057bb36319a259110b2198610d9d2b2e5041 --- runtime/method_reference.h | 3 --- 1 file changed, 3 deletions(-) (limited to 'runtime/method_reference.h') diff --git a/runtime/method_reference.h b/runtime/method_reference.h index 8e46d7e607..f4fe9b20bd 100644 --- a/runtime/method_reference.h +++ b/runtime/method_reference.h @@ -23,9 +23,6 @@ namespace art { class DexFile; -// A class is uniquely located by its DexFile and the class_defs_ table index into that DexFile -typedef std::pair ClassReference; - // A method is uniquely located by its DexFile and the method_ids_ table index into that DexFile struct MethodReference { MethodReference(const DexFile* file, uint32_t index) : dex_file(file), dex_method_index(index) { -- cgit v1.2.3