summaryrefslogtreecommitdiff
path: root/compiler/utils/jni_macro_assembler.h
diff options
context:
space:
mode:
authorRoland Levillain <rpl@google.com>2018-08-24 17:19:07 +0100
committerRoland Levillain <rpl@google.com>2018-08-28 11:09:40 +0100
commitf73cacaae3d8f89327d8886b37792a849cabd9ac (patch)
tree79047e31d512d065db47af7e68fa155c1f638f11 /compiler/utils/jni_macro_assembler.h
parentbbc6e7edb5fca4a61ac53dd9bce79cb4f0bb3403 (diff)
Remove superfluous 'virtual' specifiers in ART.
Remove 'virtual' specifier on methods already bearing the 'override' specifier. Test: mmma art Change-Id: I114930969a5ca048d88de9ecd18e2c6403593e31
Diffstat (limited to 'compiler/utils/jni_macro_assembler.h')
-rw-r--r--compiler/utils/jni_macro_assembler.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/utils/jni_macro_assembler.h b/compiler/utils/jni_macro_assembler.h
index e0c2992dea..e6130cfc4c 100644
--- a/compiler/utils/jni_macro_assembler.h
+++ b/compiler/utils/jni_macro_assembler.h
@@ -299,7 +299,7 @@ class JNIMacroLabelCommon : public JNIMacroLabel {
JNIMacroLabelCommon() : JNIMacroLabel(kIsa) {
}
- virtual ~JNIMacroLabelCommon() override {}
+ ~JNIMacroLabelCommon() override {}
private:
PlatformLabel label_;