New feature: Simple XPath-style access with operator[str_type]:
Navigate to an object, array, pair or value by e.g. int ival = MyJSON["key1/subkey1[2]/subsubkey[2]"];
2015-12-28
Changed Building requirements:
All Solution and Project files now supports Visual Studio 2015
Old Visual Studio 2010 files are renamed (appended "_vc10" to projects and solutions)
Support of commentaries in JSON input strings/files:
`js::json` does not stop parsing a JSON string/file anymore if it finds comments anymore
Comments are simply stripped off the string (pre-parsing) before the
common parsing will be done.
Supported types of comments: // ... A line comment <End-Of-Line> ... /* Anything between */ ...
Both comment styles will be stripped off the string before it is parsed.