aboutsummaryrefslogtreecommitdiffhomepage
path: root/include
diff options
context:
space:
mode:
authorGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-16 14:45:45 +0000
committerGravatar commit-bot@chromium.org <commit-bot@chromium.org@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-16 14:45:45 +0000
commit9cb671a0017e8f2906e8351ff35efcd6d8fbf7b0 (patch)
tree209de3870bbb7e3c003450f0ce0af748dc0da13a /include
parente5b2af955b7d06815ddd405659ad62a2a8355ca3 (diff)
fix calling undef inline func build error
Fixes error introduced in https://code.google.com/p/skia/source/detail?r=13465 R=robertphillips@google.com TBR=robertphillips@google.com Author: bsalomon@google.com Review URL: https://codereview.chromium.org/168893002 git-svn-id: http://skia.googlecode.com/svn/trunk@13466 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include')
-rw-r--r--include/core/SkClipStack.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/include/core/SkClipStack.h b/include/core/SkClipStack.h
index 0896db4284..a23ef4a5a5 100644
--- a/include/core/SkClipStack.h
+++ b/include/core/SkClipStack.h
@@ -229,17 +229,7 @@ public:
void initPath(int saveCount, const SkPath& path, SkRegion::Op op, bool doAA);
- void setEmpty() {
- fType = kEmpty_Type;
- fFiniteBound.setEmpty();
- fFiniteBoundType = kNormal_BoundsType;
- fIsIntersectionOfRects = false;
- fRect.setEmpty();
- fRRect.setEmpty();
- fPath.reset();
- fGenID = kEmptyGenID;
- SkDEBUGCODE(this->checkEmpty();)
- }
+ void setEmpty();
// All Element methods below are only used within SkClipStack.cpp
inline void checkEmpty() const;