comparison tango/lib/compiler/llvmdc/util/console.d @ 133:44a95ac7368a trunk

[svn r137] Many fixes towards tango.io.Console working, but not quite there yet... In particular, assertions has been fixed to include file/line info, and much more!
author lindquist
date Mon, 14 Jan 2008 05:11:54 +0100
parents 1700239cab2e
children e984333d6ac6
comparison
equal deleted inserted replaced
132:1700239cab2e 133:44a95ac7368a
73 } 73 }
74 return *this; 74 return *this;
75 } 75 }
76 76
77 // emit an integer to the console 77 // emit an integer to the console
78 Console opCall (uint i) 78 Console opCall (size_t i)
79 { 79 {
80 char[10] tmp = void; 80 char[20] tmp = void;
81 81
82 return console (intToUtf8 (tmp, i)); 82 return console (intToUtf8 (tmp, i));
83 } 83 }
84 } 84 }
85 85