ext/libsass/src/json.hpp in sassc-1.9.0 vs ext/libsass/src/json.hpp in sassc-1.10.0

- old
+ new

@@ -41,24 +41,24 @@ struct JsonNode { /* only if parent is an object or array (NULL otherwise) */ JsonNode *parent; JsonNode *prev, *next; - + /* only if parent is an object (NULL otherwise) */ char *key; /* Must be valid UTF-8. */ - + JsonTag tag; union { /* JSON_BOOL */ bool bool_; - + /* JSON_STRING */ char *string_; /* Must be valid UTF-8. */ - + /* JSON_NUMBER */ double number_; - + /* JSON_ARRAY */ /* JSON_OBJECT */ struct { JsonNode *head, *tail; } children;