diff gen/dvalue.h @ 143:336ec4f4bbb3 trunk

[svn r147] tango.io.Console is now working. True this time :) Yay!
author lindquist
date Fri, 25 Jan 2008 01:42:36 +0100
parents 3efbcc81ba45
children 7816aafeea3c
line wrap: on
line diff
--- a/gen/dvalue.h	Wed Jan 23 15:48:19 2008 +0100
+++ b/gen/dvalue.h	Fri Jan 25 01:42:36 2008 +0100
@@ -69,7 +69,7 @@
     llvm::Value* val;
     bool inplace;
 
-    DImValue(Type* t, llvm::Value* v, bool i = false) { type = t; val = v; inplace = i; }
+    DImValue(Type* t, llvm::Value* v, bool in_place = false) { type = t; val = v; inplace = in_place; }
 
     virtual llvm::Value* getRVal() { assert(val); return val; }