Slightly more consistent formatting

This commit is contained in:
Michael Hansen
2011-09-18 23:55:27 -07:00
parent fca95bc8f6
commit fb785b5dc8
2 changed files with 45 additions and 57 deletions

View File

@@ -27,9 +27,9 @@ public:
}
void push(PycRef<ASTNode> node) {
if (m_size == m_ptr + 1) {
if (m_size == m_ptr + 1)
grow(1);
}
m_stack[++m_ptr] = node;
}