mirror of
https://github.com/xomboverlord/ldc.git
synced 2026-01-12 19:03:13 +01:00
Added typeinfo ti_C. Did some changes to the way expressions that have both lvalue and rvalue LLVM values are handled.
27 lines
488 B
D
27 lines
488 B
D
module typeinfos1;
|
|
|
|
import
|
|
typeinfo1.ti_byte,
|
|
typeinfo1.ti_cdouble,
|
|
typeinfo1.ti_cfloat,
|
|
typeinfo1.ti_char,
|
|
typeinfo1.ti_creal,
|
|
typeinfo1.ti_dchar,
|
|
typeinfo1.ti_delegate,
|
|
typeinfo1.ti_double,
|
|
typeinfo1.ti_float,
|
|
typeinfo1.ti_idouble,
|
|
typeinfo1.ti_ifloat,
|
|
typeinfo1.ti_int,
|
|
typeinfo1.ti_ireal,
|
|
typeinfo1.ti_long,
|
|
typeinfo1.ti_ptr,
|
|
typeinfo1.ti_real,
|
|
typeinfo1.ti_short,
|
|
typeinfo1.ti_ubyte,
|
|
typeinfo1.ti_uint,
|
|
typeinfo1.ti_ulong,
|
|
typeinfo1.ti_ushort,
|
|
typeinfo1.ti_void,
|
|
typeinfo1.ti_wchar;
|