From 12b1802a506ef1b4f7ee1d64753a9b0d7e42cdf5 Mon Sep 17 00:00:00 2001 From: Daniel Frey Date: Fri, 22 Dec 2017 11:59:31 +0100 Subject: [PATCH] Visual Studio 2017 is fully supported now --- README.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index f190c19c..115282d6 100644 --- a/README.md +++ b/README.md @@ -72,8 +72,7 @@ The documentation will be finished once the functionality and interfaces are fin Until then, here are a few short indications on how to use this library: -* Requires Clang 3.5+ or GCC 4.8+ with `-std=c++11` (or other compilers with sufficient C++11 support), or: -* Visual Studio 2017 with `/std:c++latest`. +* Requires Clang 3.5+ or GCC 4.8+ with `-std=c++11`, or Visual Studio 2017, or other compilers with sufficient C++11 support. * The library is header-only, to install and use simply copy the directory [`include/tao`](include/tao) to a convenient place and include the file [`include/tao/json.hpp`](include/tao/json.hpp). * The generic JSON value class is in [`include/tao/json/value.hpp`](include/tao/json/value.hpp). * To parse a JSON string representation to a JSON Value, use one of the functions in [`include/tao/json/from_string.hpp`](include/tao/json/from_string.hpp) or [`include/tao/json/parse_file.hpp`](include/tao/json/parse_file.hpp).