Fixed DMD 2.053 immutable warning.

This commit is contained in:
Kiith-Sa 2013-05-31 00:23:23 +02:00
parent a409cceeff
commit a0a09597ef

View file

@ -1284,7 +1284,7 @@ struct ScalarWriter
@disable bool opEquals(ref Emitter);
///Used as "null" UTF-32 character.
immutable dcharNone = dchar.max;
static immutable dcharNone = dchar.max;
///Emitter used to emit the scalar.
Emitter* emitter_;