1 /** 2 * TypeInfo support code. 3 * 4 * Copyright: Copyright Digital Mars 2004 - 2009. 5 * License: $(WEB www.boost.org/LICENSE_1_0.txt, Boost License 1.0). 6 * Authors: Walter Bright 7 */ 8 9 /* Copyright Digital Mars 2004 - 2009. 10 * Distributed under the Boost Software License, Version 1.0. 11 * (See accompanying file LICENSE or copy at 12 * http://www.boost.org/LICENSE_1_0.txt) 13 */ 14 module rt.typeinfo.ti_ifloat; 15 16 private import rt.typeinfo.ti_float; 17 18 // ifloat 19 20 class TypeInfo_o : TypeInfo_f 21 { 22 pure: 23 nothrow: 24 @safe: 25 toString()26 override string toString() const { return ifloat.stringof; } 27 } 28