Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add c++20 to enums #3905

Merged
merged 4 commits into from
Jul 15, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update msvc version in json files
  • Loading branch information
Jasdriel committed Jul 9, 2019
commit c2edc599b18c1ef254e133d5acc4d5bc33143e2a
6 changes: 3 additions & 3 deletions Extension/bin/msvc.32.intel.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"--microsoft",
"--microsoft_bugs",
"--microsoft_version",
"1914",
"1923",
"--pack_alignment",
"8",
"-D_MSC_VER=1914",
"-D_MSC_FULL_VER=191426428",
"-D_MSC_VER=1923",
"-D_MSC_FULL_VER=192327820",
"-D_MSC_BUILD=0",
"-D_M_IX86=600",
"-D_M_IX86_FP=2"
Expand Down
6 changes: 3 additions & 3 deletions Extension/bin/msvc.64.darwin.msvc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"--microsoft",
"--microsoft_bugs",
"--microsoft_version",
"1914",
"1923",
"--pack_alignment",
"8",
"-D_CPPUNWIND=1",
"-D_MSC_VER=1914",
"-D_MSC_FULL_VER=191426428",
"-D_MSC_VER=1923",
"-D_MSC_FULL_VER=192327820",
"-D_MSC_BUILD=0",
"-D_M_X64=100",
"-D_M_AMD64=100"
Expand Down
6 changes: 3 additions & 3 deletions Extension/bin/msvc.64.intel.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"--microsoft",
"--microsoft_bugs",
"--microsoft_version",
"1914",
"1923",
"--pack_alignment",
"8",
"-D_CPPUNWIND=1",
"-D_MSC_VER=1914",
"-D_MSC_FULL_VER=191426428",
"-D_MSC_VER=1923",
"-D_MSC_FULL_VER=192327820",
"-D_MSC_BUILD=0",
"-D_M_X64=100",
"-D_M_AMD64=100"
Expand Down
6 changes: 3 additions & 3 deletions Extension/bin/msvc.64.linux.msvc.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@
"--microsoft",
"--microsoft_bugs",
"--microsoft_version",
"1914",
"1923",
"--pack_alignment",
"8",
"-D_CPPUNWIND=1",
"-D_MSC_VER=1914",
"-D_MSC_FULL_VER=191426428",
"-D_MSC_VER=1923",
"-D_MSC_FULL_VER=192327820",
"-D_MSC_BUILD=0",
"-D_M_X64=100",
"-D_M_AMD64=100"
Expand Down
1 change: 0 additions & 1 deletion Extension/c_cpp_properties.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,6 @@
"c++14",
"c++17",
"c++20",
"c++Latest",
"${default}"
]
},
Expand Down
1 change: 0 additions & 1 deletion Extension/ui/settings.html
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,6 @@
<div class="section-text">The version of the C++ language standard to use for IntelliSense.</div>
<div>
<select name="inputValue" id="cppStandard" class="select-default">
<option value="c++20">c++Latest</option>
<option value="c++20">c++20</option>
<option value="c++17">c++17</option>
<option value="c++14">c++14</option>
Expand Down