Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
vision
Commits
d4adf089
Unverified
Commit
d4adf089
authored
Mar 24, 2023
by
Nikita Shulga
Committed by
GitHub
Mar 24, 2023
Browse files
Update C++ standard to C++17 (#7464)
parent
8f2e5c90
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
setup.py
setup.py
+2
-2
No files found.
setup.py
View file @
d4adf089
...
...
@@ -437,8 +437,8 @@ def get_extensions():
"swresample"
,
"swscale"
,
],
extra_compile_args
=
[
"-std=c++1
4
"
]
if
os
.
name
!=
"nt"
else
[
"/std:c++1
4
"
,
"/MP"
],
extra_link_args
=
[
"-std=c++1
4
"
if
os
.
name
!=
"nt"
else
"/std:c++1
4
"
],
extra_compile_args
=
[
"-std=c++1
7
"
]
if
os
.
name
!=
"nt"
else
[
"/std:c++1
7
"
,
"/MP"
],
extra_link_args
=
[
"-std=c++1
7
"
if
os
.
name
!=
"nt"
else
"/std:c++1
7
"
],
)
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment