Skip to content

Commit

Permalink
Update C++ standard to C++17 (#7464)
Browse files Browse the repository at this point in the history
  • Loading branch information
malfet authored Mar 24, 2023
1 parent 8f2e5c9 commit d4adf08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -437,8 +437,8 @@ def get_extensions():
"swresample",
"swscale",
],
extra_compile_args=["-std=c++14"] if os.name != "nt" else ["/std:c++14", "/MP"],
extra_link_args=["-std=c++14" if os.name != "nt" else "/std:c++14"],
extra_compile_args=["-std=c++17"] if os.name != "nt" else ["/std:c++17", "/MP"],
extra_link_args=["-std=c++17" if os.name != "nt" else "/std:c++17"],
)
)

Expand Down

0 comments on commit d4adf08

Please sign in to comment.