diff options
author | 2014-09-29 20:07:43 -0700 | |
---|---|---|
committer | 2014-09-29 20:13:48 -0700 | |
commit | c8ccf68b805c92674545f63e0341ba47e8d9701c (patch) | |
tree | fb360323538cb242ebf7c5c0aca27d3a0bce0abb /runtime/class_linker.h | |
parent | fcabfbe577c0fd40910b565beb681bd4b66f6c5d (diff) |
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
Diffstat (limited to 'runtime/class_linker.h')
-rw-r--r-- | runtime/class_linker.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/class_linker.h b/runtime/class_linker.h index 3ea74e01ac..111dd6369e 100644 --- a/runtime/class_linker.h +++ b/runtime/class_linker.h @@ -673,7 +673,7 @@ class ClassLinker { std::vector<const DexFile*> boot_class_path_; mutable ReaderWriterMutex dex_lock_ DEFAULT_MUTEX_ACQUIRED_AFTER; - std::vector<size_t> new_dex_cache_roots_ GUARDED_BY(dex_lock_);; + std::vector<size_t> new_dex_cache_roots_ GUARDED_BY(dex_lock_); std::vector<GcRoot<mirror::DexCache>> dex_caches_ GUARDED_BY(dex_lock_); std::vector<const OatFile*> oat_files_ GUARDED_BY(dex_lock_); |