From 3a30cc1cbb2f42bcbd0695cb994a5f1a52754a89 Mon Sep 17 00:00:00 2001 From: mtklein Date: Wed, 19 Aug 2015 14:01:42 -0700 Subject: Thou shalt use override consistently. TBR=herb@google.com BUG=skia: Review URL: https://codereview.chromium.org/1285973006 --- src/pdf/SkPDFFontImpl.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/pdf/SkPDFFontImpl.h') diff --git a/src/pdf/SkPDFFontImpl.h b/src/pdf/SkPDFFontImpl.h index 6147ad5a48..f6684489b1 100644 --- a/src/pdf/SkPDFFontImpl.h +++ b/src/pdf/SkPDFFontImpl.h @@ -15,8 +15,8 @@ class SkPDFType0Font : public SkPDFFont { public: virtual ~SkPDFType0Font(); - virtual bool multiByteGlyphs() const { return true; } - virtual SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage); + bool multiByteGlyphs() const override { return true; } + SkPDFFont* getFontSubset(const SkPDFGlyphSet* usage) override; #ifdef SK_DEBUG void emitObject(SkWStream*, const SkPDFObjNumMap&, -- cgit v1.2.3