diff gen/logger.cpp @ 102:027b8d8b71ec trunk

[svn r106] Turns out the last commit wasn't enough, now the D->LLVM process is even more split up. Basically it tries to do the following in order: Resolve types, Declare symbols, Create constant initializers, Apply initializers, Generate functions bodies. ClassInfo is now has the most useful(biased?) members working. Probably other stuf...
author lindquist
date Sun, 18 Nov 2007 06:52:57 +0100
parents 61615fa85940
children 5825d48b27d1
line wrap: on
line diff
--- a/gen/logger.cpp	Fri Nov 16 10:01:24 2007 +0100
+++ b/gen/logger.cpp	Sun Nov 18 06:52:57 2007 +0100
@@ -16,8 +16,9 @@
     static bool enabled = false;
     void indent()
     {
-        if (enabled)
-        indent_str += "  ";
+        if (enabled) {
+            indent_str += "* ";
+        }
     }
     void undent()
     {