flounderpinto

Results 3 issues of flounderpinto

Given the following JSON schema: ```json { "$schema": "http://json-schema.org/draft-04/schema#", "definitions": { "example": { "type": "object", "required": [ "foo", "bar" ], "additionalProperties": false, "properties": { "foo": { "type": "boolean" }, "bar":...

**Overview** Fixes #2674. I can't entirely confirm that it doesn't have some unintended side effects, but this does fix the return type of optional values. **Test file:** `{ "$schema": "http://json-schema.org/draft-06/schema#",...

Currently, the get_xyz() methods return a copy of optional values. Something like: `boost::optional get_coordinates() const { return coordinates; }` Which makes this code not behave as expected: `for (auto coordinate:...

bug