summaryrefslogtreecommitdiffstats
path: root/runtime/method_reference.h
diff options
context:
space:
mode:
authorIan Rogers <irogers@google.com>2014-03-13 09:02:55 -0700
committerIan Rogers <irogers@google.com>2014-03-13 09:12:20 -0700
commit9758f79a6c1ef7f662caca9c1df39de1934166b8 (patch)
treefdffb18605692c990665f3e99a17dcb0efb09893 /runtime/method_reference.h
parentc1020433660737d466b0d726bbeb86d9a279a44a (diff)
downloadart-9758f79a6c1ef7f662caca9c1df39de1934166b8.tar.gz
art-9758f79a6c1ef7f662caca9c1df39de1934166b8.tar.bz2
art-9758f79a6c1ef7f662caca9c1df39de1934166b8.zip
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
Diffstat (limited to 'runtime/method_reference.h')
-rw-r--r--runtime/method_reference.h3
1 files changed, 0 insertions, 3 deletions
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<const DexFile*, uint32_t> 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) {