Let the nogc enum fix from 4a46262 be private.

This is so it doesn't leak on `import`. This also bumps version to
`1.0.4` and is also related to #7.
This commit is contained in:
yamadapc 2014-08-05 15:34:56 -03:00
parent 4a462627ea
commit a075732c0b

View file

@ -11,7 +11,7 @@ version(Windows)
import core.sys.windows.windows;
// Patch for DMD 2.065 compatibility
static if( __VERSION__ < 2066 ) enum nogc = 1;
static if( __VERSION__ < 2066 ) private enum nogc = 1;
// This is a state machine to enable terminal colors on Windows.
// Parses and interpret ANSI/VT100 Terminal Control Escape Sequences.