mirror of
https://github.com/fmtlib/fmt.git
synced 2024-11-21 18:20:04 +00:00
Workaround a clang 17 bug
This commit is contained in:
parent
79e5ae919c
commit
4cae2da0d0
@ -578,7 +578,11 @@ TEST(ranges_test, escape) {
|
||||
|
||||
EXPECT_EQ(fmt::format("{}", std::vector<std::vector<char>>{{'x'}}),
|
||||
"[['x']]");
|
||||
|
||||
// Disabled due to a clang 17 bug: https://github.com/fmtlib/fmt/issues/4144.
|
||||
#if FMT_CLANG_VERSION >= 1800
|
||||
EXPECT_EQ(fmt::format("{}", std::tuple<std::vector<char>>{{'x'}}), "(['x'])");
|
||||
#endif
|
||||
}
|
||||
|
||||
template <typename R> struct fmt_ref_view {
|
||||
|
Loading…
Reference in New Issue
Block a user