diff options
author | Roland Levillain <rpl@google.com> | 2018-08-24 17:19:07 +0100 |
---|---|---|
committer | Roland Levillain <rpl@google.com> | 2018-08-28 11:09:40 +0100 |
commit | f73cacaae3d8f89327d8886b37792a849cabd9ac (patch) | |
tree | 79047e31d512d065db47af7e68fa155c1f638f11 /compiler/utils/jni_macro_assembler.h | |
parent | bbc6e7edb5fca4a61ac53dd9bce79cb4f0bb3403 (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.h | 2 |
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_; |