view dmd/LINK.d @ 101:5e8783b5f929

Range violation error fixed (issue #2)
author korDen
date Tue, 31 Aug 2010 15:40:08 +0400
parents 10317f0c89a5
children
line wrap: on
line source

module dmd.LINK;

enum LINK
{
    LINKdefault,
    LINKd,
    LINKc,
    LINKcpp,
    LINKwindows,
    LINKpascal,
}

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