| commit | ba9d628b1b7aa13ddd59499624f672c6443b5f74 | [log] [tgz] |
|---|---|---|
| author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Feb 22 19:45:21 2011 +0000 |
| committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | Tue Feb 22 19:45:21 2011 +0000 |
| tree | 2402d78163daafb09c783f55d7f25a11194033d0 | |
| parent | 5c3d1471e4908706cd053a5e2ea9ded3a6c2eaeb [diff] [blame] |
suppress uninit warning in rb-tree git-svn-id: http://skia.googlecode.com/svn/trunk@826 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/gpu/src/GrRedBlackTree.h b/gpu/src/GrRedBlackTree.h index 310722a..e6448fb 100644 --- a/gpu/src/GrRedBlackTree.h +++ b/gpu/src/GrRedBlackTree.h
@@ -358,7 +358,7 @@ Node* gp = NULL; Node* p = NULL; Node* n = fRoot; - Child pc; + Child pc = kLeft_Child; // suppress uninit warning Child gpc; bool first = true;