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 --- patchoat/patchoat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'patchoat/patchoat.h') diff --git a/patchoat/patchoat.h b/patchoat/patchoat.h index 326333eb7d..9086d58fc7 100644 --- a/patchoat/patchoat.h +++ b/patchoat/patchoat.h @@ -36,7 +36,7 @@ class Object; class Reference; class Class; class ArtMethod; -}; // namespace mirror +} // namespace mirror class PatchOat { public: -- cgit v1.2.3-59-g8ed1b