Skip to content

Commit

Permalink
Get rid of some possibly-uninitialized-variable warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterScott committed Sep 12, 2013
1 parent c005922 commit ad95c59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fastpb/template/module.jinjacc
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ namespace {
Py_END_ALLOW_THREADS

int cmp = selfSerialized.compare(otherSerialized);
bool value;
bool value = false;
switch (op) {
case Py_LT:
value = cmp < 0;
Expand Down

0 comments on commit ad95c59

Please sign in to comment.