From ceee00b276d22c9ac9a35daa804f27afc422f6a2 Mon Sep 17 00:00:00 2001 From: John Keiser Date: Mon, 23 Mar 2020 10:00:48 -0700 Subject: [PATCH] Use c++ instead of g++ in quick start for clang --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 80303e9d..d9e03c02 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 simdjson.cpp -std=c++17` +3. `c++ -o parser parser.cpp simdjson.cpp -std=c++17` 4. `./parser` ``` 100 results.