Skip to content

Commit 035592a

Browse files
committed
darker format
1 parent fd91a72 commit 035592a

File tree

1 file changed

+10
-7
lines changed

1 file changed

+10
-7
lines changed

libcxx/utils/libcxx/test/features.py

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff 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.

0 commit comments

Comments
 (0)