/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

  1. /*
  2. * ti_idouble.d
  3. *
  4. * This module implements the TypeInfo for the idouble type.
  5. *
  6. */
  7. module runtime.typeinfo.ti_idouble;
  8. import runtime.typeinfo.ti_double;
  9. class TypeInfo_p : TypeInfo_d {
  10. char[] toString() {
  11. return "idouble";
  12. }
  13. }