Skip to content

Commit

Permalink
Replace C++11 with C++17 in all the places.
Browse files Browse the repository at this point in the history
  • Loading branch information
dburkart committed Dec 20, 2023
1 parent 9e25bee commit d8f2a18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gen/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ clean:
rm -f $(GENERATED_OBJ)

$(GENERATED_OBJ): %.o: %.cc
$(CXX) -c $(CINCLUDES) -std=c++11 -fPIC -Wno-deprecated-register -DPLATFORM=\"$(ARCH)-$(PLATFORM)\" $< -o $@
$(CXX) -c $(CINCLUDES) -std=c++17 -fPIC -Wno-deprecated-register -DPLATFORM=\"$(ARCH)-$(PLATFORM)\" $< -o $@

2 changes: 1 addition & 1 deletion test/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from distutils.sysconfig import get_python_inc

module = Extension('checksieve',
extra_compile_args = ['-std=c++11'],
extra_compile_args = ['-std=c++17'],
sources = ['src/python.cc'],
include_dirs = ['src', 'src/AST', 'gen', get_python_inc(), get_python_inc(plat_specific=True)],
libraries = ['checksieve'],
Expand Down

0 comments on commit d8f2a18

Please sign in to comment.