enable std c++14 (#24127)

This commit is contained in:
Joe Heaton 2021-06-04 19:47:32 +01:00 committed by GitHub
parent 54b9fe219b
commit 13978d68ea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,6 +65,12 @@ def cxx11_flag(self):
return '-std=c++11'
return "-h std=c++11"
@property
def cxx14_flag(self):
if self.is_clang_based:
return '-std=c++14'
return "-h std=c++14"
@property
def c99_flag(self):
if self.is_clang_based: