From 0b52517e1f401040d35cb602484f19a80ddac015 Mon Sep 17 00:00:00 2001 From: theomegacarrot Date: Fri, 17 Mar 2023 14:20:43 -0400 Subject: [PATCH] throws_on_move_t -> throws_on_move in strings --- test/std-test.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/std-test.cc b/test/std-test.cc index 278cef77..4e3c14ed 100644 --- a/test/std-test.cc +++ b/test/std-test.cc @@ -100,7 +100,7 @@ struct throws_on_move { throws_on_move() = default; [[noreturn]] throws_on_move(throws_on_move&&) { - throw std::runtime_error("Thrown by throws_on_move_t"); + throw std::runtime_error("Thrown by throws_on_move"); } throws_on_move(const throws_on_move&) = default; @@ -108,7 +108,7 @@ struct throws_on_move { template <> struct fmt::formatter : formatter { auto format(const throws_on_move&, format_context& ctx) const { - string_view str(""); + string_view str(""); return formatter::format(str, ctx); } };