2 changes: 0 additions & 2 deletions libcxx/utils/data/ignore_format.txt
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ libcxx/include/__algorithm/clamp.h
libcxx/include/__algorithm/comp.h
libcxx/include/__algorithm/comp_ref_type.h
libcxx/include/__algorithm/copy_backward.h
libcxx/include/__algorithm/copy.h
libcxx/include/__algorithm/copy_if.h
libcxx/include/__algorithm/copy_move_common.h
libcxx/include/__algorithm/copy_n.h
Expand All @@ -50,7 +49,6 @@ libcxx/include/__algorithm/fill.h
libcxx/include/__algorithm/fill_n.h
libcxx/include/__algorithm/find_end.h
libcxx/include/__algorithm/find_first_of.h
libcxx/include/__algorithm/for_each.h
libcxx/include/__algorithm/for_each_n.h
libcxx/include/__algorithm/generate.h
libcxx/include/__algorithm/generate_n.h
Expand Down
5 changes: 4 additions & 1 deletion libcxx/utils/libcxx/test/params.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"-Wno-unused-command-line-argument",
"-Wno-attributes",
"-Wno-pessimizing-move",
"-Wno-c++11-extensions",
"-Wno-noexcept-type",
"-Wno-aligned-allocation-unavailable",
"-Wno-atomic-alignment",
Expand All @@ -47,6 +46,10 @@
"-Wunused-parameter",
"-Wunreachable-code",
"-Wno-unused-local-typedef",

# Disable warnings for extensions used in C++03
"-Wno-local-type-template-args",
"-Wno-c++11-extensions",
]

_allStandards = ["c++03", "c++11", "c++14", "c++17", "c++20", "c++23", "c++26"]
Expand Down