
29 Oct
2012
29 Oct
'12
8:18 p.m.
On 29/10/2012 04:29 p.m., Dave Abrahams wrote:
In the abstract, json looks like:
struct null {}; typedef std::map<std::string, value> object; typedef std::vector<value> array;
typedef variant< null, std::string, double, object, array, bool
value;
Keep in mind that instantiating a standard container with an incomplete type will yield undefined behavior, and that `variant` has to instantiate both `object` and `array` to know their size. In my own JSON attempt I have used Boost.Containers, which do guarantee defined behavior when instantiated with incomplete types. Agustín K-ballo Bergé.- http://fusionfenix.com