diff options
author | tfarina <tfarina@chromium.org> | 2015-04-27 07:01:44 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-04-27 07:01:45 -0700 |
commit | 567ff2f6143ecb993dbedede402a43feb71c420a (patch) | |
tree | b8bc1ea5fc362da369ba1868d4dca0312ec0a192 /include | |
parent | 275231474528cbe42cb49b7e649fbbd6b92890af (diff) |
Cleanup: Remove unnecessary double-semicolons.
The entries were found by the following command line:
$ find . -regex ".*\.[cChH]\(pp\)?" | xargs git grep -e ';;' --and --not
-e 'for *(.*;;'
Which is a combination of http://stackoverflow.com/a/3858879 and
http://gitster.livejournal.com/27674.html
BUG=None
R=mtklein@google.com
Review URL: https://codereview.chromium.org/1088763005
Diffstat (limited to 'include')
-rw-r--r-- | include/core/SkTArray.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/core/SkTArray.h b/include/core/SkTArray.h index dea0e38fec..a035f6e9af 100644 --- a/include/core/SkTArray.h +++ b/include/core/SkTArray.h @@ -300,7 +300,7 @@ public: return fItemArray ? fItemArray + fCount : NULL; } const T* end() const { - return fItemArray ? fItemArray + fCount : NULL;; + return fItemArray ? fItemArray + fCount : NULL; } /** |