diff doodle/core/backtrace.d @ 132:bc5baa585b32

Updated to dmd 2.060
author David Bryant <bagnose@gmail.com>
date Thu, 02 Aug 2012 15:32:43 +0930
parents 7abaf5c3959f
children
line wrap: on
line diff
--- a/doodle/core/backtrace.d	Thu Jan 12 18:20:58 2012 +1030
+++ b/doodle/core/backtrace.d	Thu Aug 02 15:32:43 2012 +0930
@@ -1,5 +1,7 @@
 module doodle.core.backtrace;
 
+/+
+
 //
 // Provides support for a readable backtrace on a program crash.
 //
@@ -36,7 +38,7 @@
             }
         }
 
-        throw new Error(format("Got signal %s %s", sig, name));
+        throw new Error(format("Got signal %s %s", sig, name()));
     }
 
     shared static this() {
@@ -111,3 +113,4 @@
         char** framelist;
     }
 }
++/