From c8ccf68b805c92674545f63e0341ba47e8d9701c Mon Sep 17 00:00:00 2001 From: Andreas Gampe Date: Mon, 29 Sep 2014 20:07:43 -0700 Subject: ART: Fix some -Wpedantic errors Remove extra semicolons. Dollar signs in C++ identifiers are an extension. Named variadic macros are an extension. Binary literals are a C++14 feature. Enum re-declarations are not allowed. Overflow. Change-Id: I7d16b2217b2ef2959ca69de84eaecc754517714a --- runtime/class_linker.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/class_linker.cc') diff --git a/runtime/class_linker.cc b/runtime/class_linker.cc index 9090f290fc..cc77c508a5 100644 --- a/runtime/class_linker.cc +++ b/runtime/class_linker.cc @@ -2116,7 +2116,7 @@ mirror::Class* ClassLinker::FindClassInPathClassLoader(ScopedObjectAccessAlready hs.NewHandle(soa.DecodeField(WellKnownClasses::dalvik_system_DexFile_cookie)); Handle dex_file_field = hs.NewHandle( - soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList$Element_dexFile)); + soa.DecodeField(WellKnownClasses::dalvik_system_DexPathList__Element_dexFile)); mirror::Object* dex_path_list = soa.DecodeField(WellKnownClasses::dalvik_system_PathClassLoader_pathList)-> GetObject(class_loader.Get()); -- cgit v1.2.3-59-g8ed1b