File tree Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Expand file tree Collapse file tree 1 file changed +10
-7
lines changed Original file line number Diff line number Diff line change @@ -337,19 +337,22 @@ def _mingwSupportsModules(cfg):
337337 # Avoid building on platforms that don't support modules properly.
338338 or not hasCompileFlag (cfg , "-Wno-reserved-module-identifier" )
339339 # older versions don't support extern "C++", newer versions don't support main in named module.
340- or not (sourceBuilds (
341- cfg ,
342- """
340+ or not (
341+ sourceBuilds (
342+ cfg ,
343+ """
343344 export module test;
344345 extern "C++" int main(int, char**) { return 0; }
345346 """ ,
346- ) or sourceBuilds (
347- cfg ,
348- """
347+ )
348+ or sourceBuilds (
349+ cfg ,
350+ """
349351 export module test;
350352 int main(int, char**) { return 0; }
351353 """ ,
352- )),
354+ )
355+ ),
353356 ),
354357 # The time zone validation tests compare the output of zdump against the
355358 # output generated by <chrono>'s time zone support.
You can’t perform that action at this time.
0 commit comments