diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-06-07 17:20:37 +0900 |
|---|---|---|
| committer | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-10-12 16:21:07 +0900 |
| commit | 71eb4b2b227c083f187c634212f5fc557f392fb9 (patch) | |
| tree | 1e8e08dbebbf8d0f9a004dedb7405c254b15646d /.github | |
| parent | d93b1a48d2b50117374008c575a2a811943e8049 (diff) | |
| download | mruby-71eb4b2b227c083f187c634212f5fc557f392fb9.tar.gz mruby-71eb4b2b227c083f187c634212f5fc557f392fb9.zip | |
Avoid use of designated initializers to generate `irep` struct.
Since it's not supported on VC without `/std:c++latest`. That means it
doesn't work for `cxx_api` build on Windows VC.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 0a553c919..15ea84ff1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -125,4 +125,4 @@ jobs: MRUBY_TARGET: appveyor # TODO(take-cheeze): Re-enable /O2 CFLAGS: "/c /nologo /W3 /we4013 /Zi /MD /D_CRT_SECURE_NO_WARNINGS" - CXXFLAGS: "/c /nologo /W3 /Zi /MD /EHs /D_CRT_SECURE_NO_WARNINGS /std:c++latest" + CXXFLAGS: "/c /nologo /W3 /Zi /MD /EHs /D_CRT_SECURE_NO_WARNINGS" |
