Use C++14 instead of C++11

This commit is contained in:
Mr_Goldberg 2021-09-19 01:09:25 -04:00
parent 1bc2fc9d42
commit a32853e643
No known key found for this signature in database
GPG key ID: 8597D87419DEF278
4 changed files with 9 additions and 9 deletions

View file

@ -1,2 +1,2 @@
protoc -I./dll/ --cpp_out=./dll/ ./dll/*.proto
clang++ -shared -fPIC -o libsteam_api.so dll/*.cpp dll/*.cc -g3 -Wno-return-type -fsanitize=address -lasan -lprotobuf-lite -std=c++11 && echo built
clang++ -shared -fPIC -o libsteam_api.so dll/*.cpp dll/*.cc -g3 -Wno-return-type -fsanitize=address -lasan -lprotobuf-lite -std=c++14 && echo built