From a0a09597efeabe08146c330985867273e144ff5f Mon Sep 17 00:00:00 2001 From: Kiith-Sa Date: Fri, 31 May 2013 00:23:23 +0200 Subject: [PATCH] Fixed DMD 2.053 immutable warning. --- source/dyaml/emitter.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/dyaml/emitter.d b/source/dyaml/emitter.d index 9ea2f6f..d73e870 100644 --- a/source/dyaml/emitter.d +++ b/source/dyaml/emitter.d @@ -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_;