Use c++ instead of g++ in quick start for clang

This commit is contained in:
John Keiser 2020-03-23 10:00:48 -07:00
parent 6c2ab064cb
commit ceee00b276
1 changed files with 1 additions and 1 deletions

View File

@ -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.