From ee9f28338b52d5ec453c131abe76db565156ba1d Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Tue, 11 Dec 2018 14:34:33 +0100 Subject: [PATCH] fix #205 by removing useless assertions about `Value` and `Node` sizes --- source/dyaml/node.d | 3 --- 1 file changed, 3 deletions(-) diff --git a/source/dyaml/node.d b/source/dyaml/node.d index 1d09e07..8a76fdc 100644 --- a/source/dyaml/node.d +++ b/source/dyaml/node.d @@ -185,9 +185,6 @@ struct Node // Node collection style. Used to remember style this node was loaded with. CollectionStyle collectionStyle = CollectionStyle.invalid; - static assert(Value.sizeof <= 24, "Unexpected YAML value size"); - static assert(Node.sizeof <= 56, "Unexpected YAML node size"); - public: /** Construct a Node from a value. *