From 6c2ab064cb18fac6ae8ca809a6b585b7d7cbd47b Mon Sep 17 00:00:00 2001 From: John Keiser Date: Mon, 23 Mar 2020 08:28:44 -0700 Subject: [PATCH] Correct quick start Not sure how this update didn't make it in, but it's necessary. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25207470..80303e9d 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ simdjson is easily consumable with a single .h and .cpp file. std::cout << tweets["search_metadata"]["count"] << " results." << std::endl; } ``` -3. `g++ -o parser parser.cpp` (or clang++) +3. `g++ -o parser parser.cpp simdjson.cpp -std=c++17` 4. `./parser` ``` 100 results.