From d8d93b0fe3bfcfa74a8fbba1c6c043fe2f0f7156 Mon Sep 17 00:00:00 2001 From: Kefu Chai Date: Fri, 25 Nov 2022 17:07:29 +0800 Subject: [PATCH] crimson/osd: correct the fmt::formatter it was introduced by c9569f8eb027b9e08c8eeb59ecb37378ef66e5c0 Signed-off-by: Kefu Chai --- src/crimson/osd/watch.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/crimson/osd/watch.cc b/src/crimson/osd/watch.cc index aadf4ec484f6c..24377927735f2 100644 --- a/src/crimson/osd/watch.cc +++ b/src/crimson/osd/watch.cc @@ -311,5 +311,5 @@ void Notify::do_notify_timeout() } // namespace crimson::osd #if FMT_VERSION >= 90000 -template struct fmt::formatter : fmt::ostream_formatter {}; +template <> struct fmt::formatter : fmt::ostream_formatter {}; #endif -- 2.39.5