diff options
| author | ruki <[email protected]> | 2025-09-26 22:14:46 +0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-09-26 22:14:46 +0800 |
| commit | 7c9fbf87ba1d4b48fb111bf3cc4090b5ebcf90b3 (patch) | |
| tree | 94e3d5a47e819b573ada0c418846f70fe1224ae6 /tests/projects/c++/modules/test_culling.lua | |
| parent | f6e00b1cc570b023c618f3753f9e0c91b82df652 (diff) | |
| parent | bcc3c5617baad62989a45a44aa2890fda5eba0f3 (diff) | |
Merge pull request #6809 from Arthapz/fix-stdmodule-priority
fix(C++ modules) fix stdmodule priority
Diffstat (limited to 'tests/projects/c++/modules/test_culling.lua')
| -rw-r--r-- | tests/projects/c++/modules/test_culling.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/c++/modules/test_culling.lua b/tests/projects/c++/modules/test_culling.lua index 9accf9a12..a2b046e74 100644 --- a/tests/projects/c++/modules/test_culling.lua +++ b/tests/projects/c++/modules/test_culling.lua @@ -7,7 +7,7 @@ MSVC_MIN_VER = "14.29" function main(_) local check_outdata = {str = "culled", format_string = "Modules culling does not work"} local clang_options = {compiler = "clang", version = CLANG_MIN_VER, check_outdata = check_outdata} - local gcc_options = {compiler = "gcc", version = GCC_MIN_VER, check_outdata} - local msvc_options = {version = MSVC_MIN_VER, check_outdata} + local gcc_options = {compiler = "gcc", version = GCC_MIN_VER, check_outdata = check_outdata} + local msvc_options = {version = MSVC_MIN_VER, check_outdata = check_outdata} run_tests(clang_options, gcc_options, msvc_options) end |
