Download Reference Manual
The Developer's Library for D
About Wiki Forums Source Search Contact

Changeset 3666

Show
Ignore:
Timestamp:
06/22/08 23:43:54 (4 months ago)
Author:
kris
Message:

added support for void

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/tango/text/convert/Layout.d

    r3645 r3666  
    559559                            return integer (result, *cast(byte*) p, format, ubyte.max); 
    560560 
     561                       case TypeCode.VOID: 
    561562                       case TypeCode.UBYTE: 
    562563                            return integer (result, *cast(ubyte*) p, format, ubyte.max, "u"); 
     
    707708{ 
    708709        EMPTY = 0, 
     710        VOID = 'v', 
    709711        BOOL = 'b', 
    710712        UBYTE = 'h', 
     
    726728        STRUCT = 'S', 
    727729        ENUM = 'E', 
     730        CONST = 'x', 
     731        INVARIANT = 'y', 
     732        DELEGATE = 'D', 
     733        FUNCTION = 'F', 
    728734        POINTER = 'P', 
    729735        TYPEDEF = 'T',