/src/rt/typeinfo/ti_ireal.d

http://github.com/AlexeyProkhin/druntime · D · 28 lines · 10 code · 5 blank · 13 comment · 0 complexity · 29f6e420a4d0c9af6fb198dfffe53df3 MD5 · raw file

  1. /**
  2. * TypeInfo support code.
  3. *
  4. * Copyright: Copyright Digital Mars 2004 - 2009.
  5. * License: <a href="http://www.boost.org/LICENSE_1_0.txt">Boost License 1.0</a>.
  6. * Authors: Walter Bright
  7. */
  8. /* Copyright Digital Mars 2004 - 2009.
  9. * Distributed under the Boost Software License, Version 1.0.
  10. * (See accompanying file LICENSE or copy at
  11. * http://www.boost.org/LICENSE_1_0.txt)
  12. */
  13. module rt.typeinfo.ti_ireal;
  14. private import rt.typeinfo.ti_real;
  15. // ireal
  16. class TypeInfo_j : TypeInfo_e
  17. {
  18. @trusted:
  19. const:
  20. pure:
  21. nothrow:
  22. override string toString() const pure nothrow @safe { return "ireal"; }
  23. }