/runtime/typeinfo/ti_idouble.d
http://github.com/wilkie/djehuty · D · 16 lines · 7 code · 3 blank · 6 comment · 0 complexity · a76cb8e42e9818a4cc93bcbd5598f6ff MD5 · raw file
- /*
- * ti_idouble.d
- *
- * This module implements the TypeInfo for the idouble type.
- *
- */
- module runtime.typeinfo.ti_idouble;
- import runtime.typeinfo.ti_double;
- class TypeInfo_p : TypeInfo_d {
- char[] toString() {
- return "idouble";
- }
- }