/runtime/typeinfo/ti_ifloat.d
http://github.com/wilkie/djehuty · D · 16 lines · 7 code · 3 blank · 6 comment · 0 complexity · 89e5604fedc3eec45acd9cb8bd6e6aca MD5 · raw file
- /*
- * ti_ifloat.d
- *
- * This module implements the TypeInfo for the ifloat type.
- *
- */
- module runtime.typeinfo.ti_ifloat;
- import runtime.typeinfo.ti_float;
- class TypeInfo_o : TypeInfo_f {
- char[] toString() {
- return "ifloat";
- }
- }