/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

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