From ba9d628b1b7aa13ddd59499624f672c6443b5f74 Mon Sep 17 00:00:00 2001 From: "bsalomon@google.com" Date: Tue, 22 Feb 2011 19:45:21 +0000 Subject: [PATCH] suppress uninit warning in rb-tree git-svn-id: http://skia.googlecode.com/svn/trunk@826 2bbb7eff-a529-9590-31e7-b0007b416f81 --- gpu/src/GrRedBlackTree.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gpu/src/GrRedBlackTree.h b/gpu/src/GrRedBlackTree.h index 310722a919..e6448fb94f 100644 --- a/gpu/src/GrRedBlackTree.h +++ b/gpu/src/GrRedBlackTree.h @@ -358,7 +358,7 @@ typename GrRedBlackTree::Iter GrRedBlackTree::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;