Unverified Commit d4adf089 authored by Nikita Shulga's avatar Nikita Shulga Committed by GitHub
Browse files

Update C++ standard to C++17 (#7464)

parent 8f2e5c90
...@@ -437,8 +437,8 @@ def get_extensions(): ...@@ -437,8 +437,8 @@ def get_extensions():
"swresample", "swresample",
"swscale", "swscale",
], ],
extra_compile_args=["-std=c++14"] if os.name != "nt" else ["/std:c++14", "/MP"], extra_compile_args=["-std=c++17"] if os.name != "nt" else ["/std:c++17", "/MP"],
extra_link_args=["-std=c++14" if os.name != "nt" else "/std:c++14"], extra_link_args=["-std=c++17" if os.name != "nt" else "/std:c++17"],
) )
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment