fix #205 by removing useless assertions about Value and Node sizes

This commit is contained in:
Basile Burg 2018-12-11 14:34:33 +01:00 committed by BBasile
parent 7dbec8d1ad
commit ee9f28338b

View file

@ -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.
*