Skip to content

Commit

Permalink
bump c++ standard to 14 (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
vene authored Jan 12, 2022
1 parent 69aab64 commit 14bfba0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,14 @@
from Cython.Build import cythonize

AD3_FLAGS_UNIX = [
'-std=c++11',
'-std=c++14',
'-Wno-sign-compare',
'-Wno-overloaded-virtual',
'-ffast-math',
]

AD3_FLAGS_MSVC = [
'/std:c++14',
'/O2',
'/fp:fast',
'/wd4267' # suppress sign-compare--like warning
Expand Down

0 comments on commit 14bfba0

Please sign in to comment.