Clean up use of inline loop/conditional bodies

This commit is contained in:
Michael Hansen
2011-10-02 10:40:05 -07:00
parent db0c4c724c
commit 18a5f1082e
3 changed files with 8 additions and 4 deletions

View File

@@ -32,7 +32,8 @@ PycRef<ASTNode> BuildFromCode(PycRef<PycCode> code, PycModule* mod)
while (!source.atEof()) {
#ifdef BLOCK_DEBUG
fprintf(stderr, "%02d", pos);
for (unsigned int i = 0; i < blocks.size(); i++) fprintf(stderr, " ");
for (unsigned int i = 0; i < blocks.size(); i++)
fprintf(stderr, " ");
fprintf(stderr, "%s\n", curblock->type_str());
#endif