Remove SK_OVERRIDE from func defn

git-svn-id: http://skia.googlecode.com/svn/trunk@2570 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-10-31 16:47:13 +00:00
parent 1a7eabc8dc
commit 8301de132e

View File

@ -244,7 +244,7 @@ SkFuncViewFactory::SkFuncViewFactory(SkViewCreateFunc func)
: fCreateFunc(func) {
}
SkView* SkFuncViewFactory::operator() () const SK_OVERRIDE {
SkView* SkFuncViewFactory::operator() () const {
return (*fCreateFunc)();
}