Stripped whitespaces in node.d

This commit is contained in:
Ferdinand Majerech 2014-05-19 19:53:18 +02:00
parent cc627074b1
commit cd7d60bb0e

View file

@ -1427,14 +1427,14 @@ struct Node
* Returns: Constructed node. * Returns: Constructed node.
*/ */
static Node rawNode(Value value, const Mark startMark, const Tag tag, static Node rawNode(Value value, const Mark startMark, const Tag tag,
in ScalarStyle scalarStyle, const ScalarStyle scalarStyle,
in CollectionStyle collectionStyle) @safe const CollectionStyle collectionStyle) @safe
{ {
Node node; Node node;
node.value_ = value; node.value_ = value;
node.startMark_ = startMark; node.startMark_ = startMark;
node.tag_ = tag; node.tag_ = tag;
node.scalarStyle = scalarStyle; node.scalarStyle = scalarStyle;
node.collectionStyle = collectionStyle; node.collectionStyle = collectionStyle;
return node; return node;