diff lphobos/typeinfo1/ti_ifloat.d @ 62:b86e00b938a5 trunk

[svn r66] Added support for imaginary floating point types
author lindquist
date Thu, 25 Oct 2007 09:48:36 +0200
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/lphobos/typeinfo1/ti_ifloat.d	Thu Oct 25 09:48:36 2007 +0200
@@ -0,0 +1,12 @@
+
+// ifloat
+
+module typeinfo1.ti_ifloat;
+
+private import typeinfo1.ti_float;
+
+class TypeInfo_o : TypeInfo_f
+{
+    char[] toString() { return "ifloat"; }
+}
+