suppress uninit warning in rb-tree

git-svn-id: http://skia.googlecode.com/svn/trunk@826 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
bsalomon@google.com 2011-02-22 19:45:21 +00:00
parent 5c3d1471e4
commit ba9d628b1b

View File

@ -358,7 +358,7 @@ typename GrRedBlackTree<T,C>::Iter GrRedBlackTree<T,C>::insert(const T& t) {
Node* gp = NULL;
Node* p = NULL;
Node* n = fRoot;
Child pc;
Child pc = kLeft_Child; // suppress uninit warning
Child gpc;
bool first = true;