comparison dmd/TFLAGS.d @ 0:10317f0c89a5

Initial commit
author korDen
date Sat, 24 Oct 2009 08:42:06 +0400
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:10317f0c89a5
1 module dmd.TFLAGS;
2
3 enum TFLAGS
4 {
5 TFLAGSintegral = 1,
6 TFLAGSfloating = 2,
7 TFLAGSunsigned = 4,
8 TFLAGSreal = 8,
9 TFLAGSimaginary = 0x10,
10 TFLAGScomplex = 0x20,
11 }