Use c++ instead of g++ in quick start for clang
This commit is contained in:
parent
6c2ab064cb
commit
ceee00b276
|
@ -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.
|
||||
|
|
Loading…
Reference in New Issue