Skip to content

Commit

Permalink
Language standard fixes
Browse files Browse the repository at this point in the history
    * ACE/bin/MakeProjectCreator/config/acedefaults.mpb:
    * ACE/bin/MakeProjectCreator/config/vs2017nmake.mpb:
    * ACE/bin/MakeProjectCreator/config/vs2019nmake.mpb:
    * ACE/bin/MakeProjectCreator/config/vs2022nmake.mpb:
  • Loading branch information
jwillemsen committed Apr 23, 2024
1 parent ccfdcdd commit d6bc831
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ACE/bin/MakeProjectCreator/config/acedefaults.mpb
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ feature(!threads) {
}
}

feature(vc_languagestandard) {
feature(vc_languagestandard2017) {
specific(vs2017,vs2019,vs2022) {
languagestandard = /std:c++17
LanguageStandard = stdcpp17
}
}
4 changes: 2 additions & 2 deletions ACE/bin/MakeProjectCreator/config/vs2017nmake.mpb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ feature(vc_avoid_hides_class_member) {
}
}

feature(vc_languagestandard) {
feature(vc_languagestandard2017) {
specific(nmake) {
languagestandard = /std:c++17
compile_flags += /std:c++17
}
}
4 changes: 2 additions & 2 deletions ACE/bin/MakeProjectCreator/config/vs2019nmake.mpb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ feature(vc_avoid_hides_class_member) {
}
}

feature(vc_languagestandard) {
feature(vc_languagestandard2017) {
specific(nmake) {
languagestandard = /std:c++17
compile_flags += /std:c++17
}
}
4 changes: 2 additions & 2 deletions ACE/bin/MakeProjectCreator/config/vs2022nmake.mpb
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ feature(vc_avoid_hides_class_member) {
}
}

feature(vc_languagestandard) {
feature(vc_languagestandard2017) {
specific(nmake) {
languagestandard = /std:c++17
compile_flags += /std:c++17
}
}

0 comments on commit d6bc831

Please sign in to comment.