From 7ae4de477624441956751715c3d85c772a899b5f Mon Sep 17 00:00:00 2001 From: Ferdinand Majerech Date: Tue, 20 May 2014 23:19:02 +0200 Subject: [PATCH] Removed a pragma(msg) and fixed a minor tab/space issue --- source/dyaml/node.d | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/source/dyaml/node.d b/source/dyaml/node.d index f3b8ba0..bf8ccfe 100644 --- a/source/dyaml/node.d +++ b/source/dyaml/node.d @@ -222,7 +222,6 @@ struct Node //Node collection style. Used to remember style this node was loaded with. CollectionStyle collectionStyle = CollectionStyle.Invalid; - pragma(msg, "Node is %s bytes long".format(Node.sizeof)); static assert(Value.sizeof <= 24, "Unexpected YAML value size"); static assert(Node.sizeof <= 48, "Unexpected YAML node size"); @@ -597,7 +596,7 @@ struct Node * the value is out of range of requested type. */ @property T get(T, Flag!"stringConversion" stringConversion = Yes.stringConversion)() - @trusted if(!is(T == const)) + @trusted if(!is(T == const)) { if(isType!T){return value_.get!T;}