Compare Revisions

The credentials to download the source code are:
 Username: svnusers
 Password: svnusers

Ignore whitespace Rev 52 → Rev 53

/tags/v1.4.0/ttcn/LibCommon_BasicTypesAndValues.ttcn
53,6 → 53,7
const integer c_uInt36Max := 68719476735;
const integer c_uInt48Max := 281474976710655;
const integer c_uInt52Max := 4503599627370495;
const integer c_uInt64Max := 18446744073709551615;
 
type integer UInt (0 .. infinity);
type integer UInt1 (0 .. c_uInt1Max) with {variant "unsigned 1 bit"};
90,6 → 91,7
type integer UInt36 (0 .. c_uInt36Max) with {variant "unsigned 36 bit"};
type integer UInt48 (0 .. c_uInt48Max) with {variant "unsigned 48 bit"};
type integer UInt52 (0 .. c_uInt52Max) with {variant "unsigned 52 bit"};
type integer UInt64 (0 .. c_uInt64Max) with {variant "unsigned 64 bit"};
} // end group unsignedIntegerDefintions