From: Kefu Chai Date: Fri, 25 Nov 2022 09:07:29 +0000 (+0800) Subject: crimson/osd: correct the fmt::formatter X-Git-Tag: v18.1.0~810^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d8d93b0fe3bfcfa74a8fbba1c6c043fe2f0f7156;p=ceph.git crimson/osd: correct the fmt::formatter it was introduced by c9569f8eb027b9e08c8eeb59ecb37378ef66e5c0 Signed-off-by: Kefu Chai --- diff --git a/src/crimson/osd/watch.cc b/src/crimson/osd/watch.cc index aadf4ec484f6..24377927735f 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