view dmd/TRUST.d @ 192:eb38fdcb3e62 default tip

updated to compile with dmd2.062
author korDen
date Sat, 02 Mar 2013 01:25:52 -0800
parents 60bb0fe4563e
children
line wrap: on
line source

module dmd.TRUST;

enum TRUST
{
    TRUSTdefault = 0,
    TRUSTsystem = 1,	// @system (same as TRUSTdefault)
    TRUSTtrusted = 2,	// @trusted
    TRUSTsafe = 3,	// @safe
};

import dmd.EnumUtils;
mixin(BringToCurrentScope!(TRUST));