aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/SkTLList.h
diff options
context:
space:
mode:
authorGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-26 20:22:32 +0000
committerGravatar bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81>2014-02-26 20:22:32 +0000
commit4ebe3821888d550d8a8b89341ec251ba942f0225 (patch)
tree19b88320d8eb8e0616754c4da672c629424ba205 /src/core/SkTLList.h
parent16f418080ff6751e15e0193263149412de9c848a (diff)
Revert "Revert of Add getReducedClipStack to lua canvas (https://codereview.chromium.org/180283004/)"
This reverts commit efded03a38d6147caaf2d951638d27fdd47eed64. Fixes builds Review URL: https://codereview.chromium.org/181903002 git-svn-id: http://skia.googlecode.com/svn/trunk@13599 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src/core/SkTLList.h')
-rw-r--r--src/core/SkTLList.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/SkTLList.h b/src/core/SkTLList.h
index 99b5bc67d9..aeae3f72ee 100644
--- a/src/core/SkTLList.h
+++ b/src/core/SkTLList.h
@@ -198,11 +198,11 @@ public:
Iter() {}
- Iter(const SkTLList& list, IterStart start) {
+ Iter(const SkTLList& list, IterStart start = kHead_IterStart) {
INHERITED::init(list.fList, start);
}
- T* init(const SkTLList& list, IterStart start) {
+ T* init(const SkTLList& list, IterStart start = kHead_IterStart) {
return this->nodeToObj(INHERITED::init(list.fList, start));
}