Whitespace cleanup.

This commit is contained in:
John Wiegley 2009-01-29 18:24:10 -04:00
parent 05c77351e4
commit da1cd7c4bc
2 changed files with 29 additions and 31 deletions

View file

@ -49,8 +49,7 @@ namespace {
}
*p = '\0';
expr_t::ptr_op_t op = scope.lookup(buf);
if (op)
if (expr_t::ptr_op_t op = scope.lookup(buf))
return op_bool_tuple(op, false);
*p++ = '_';
@ -66,8 +65,7 @@ namespace {
buf[4] = letter;
buf[5] = '\0';
expr_t::ptr_op_t op = scope.lookup(buf);
if (op)
if (expr_t::ptr_op_t op = scope.lookup(buf))
return op_bool_tuple(op, false);
buf[5] = '_';