aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/opts/SkXfermode_opts_SSE2.h
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2015-04-27 07:53:07 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-04-27 07:53:08 -0700
commit7831a4bbb46a919316efc7c70808dcaaf8ee629a (patch)
treeea6806148d342a83101f6a457826e760d0e748b9 /src/opts/SkXfermode_opts_SSE2.h
parent567ff2f6143ecb993dbedede402a43feb71c420a (diff)
Update more directories under src/ to follow C++11 style rule for {virtual,override}.
The Google style guide states that only one of {virtual,override,final} should be used for each declaration, since override implies virtual and final implies both virtual and override. The entries were found using the following command line: $ find src/ -iname "*.h" -o -iname "*.cpp" | xargs pcregrep -M "[^\n/]+virtual\ [^;{]+\ [a-zA-Z0-9_]+\([^;{]+\ override[ \n]*[;{]" The regex was a courtesy of nick@chromium.org BUG=None R=mtklein@google.com NOPRESUBMIT=true Review URL: https://codereview.chromium.org/1086143003
Diffstat (limited to 'src/opts/SkXfermode_opts_SSE2.h')
-rw-r--r--src/opts/SkXfermode_opts_SSE2.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/opts/SkXfermode_opts_SSE2.h b/src/opts/SkXfermode_opts_SSE2.h
index 80512aca99..927e5f4006 100644
--- a/src/opts/SkXfermode_opts_SSE2.h
+++ b/src/opts/SkXfermode_opts_SSE2.h
@@ -17,10 +17,10 @@ public:
void* procSIMD)
: INHERITED(rec, mode), fProcSIMD(procSIMD) {}
- virtual void xfer32(SkPMColor dst[], const SkPMColor src[], int count,
- const SkAlpha aa[]) const override;
- virtual void xfer16(uint16_t dst[], const SkPMColor src[],
- int count, const SkAlpha aa[]) const override;
+ void xfer32(SkPMColor dst[], const SkPMColor src[], int count,
+ const SkAlpha aa[]) const override;
+ void xfer16(uint16_t dst[], const SkPMColor src[],
+ int count, const SkAlpha aa[]) const override;
SK_TO_STRING_OVERRIDE()