From: Radoslaw Zarzynski Date: Tue, 17 Jan 2023 19:11:44 +0000 (+0000) Subject: crimson/osd: fix compilation guard around specialization for libfmt => 9 X-Git-Tag: v18.1.0~260^2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=4dbe8f56b6d9a063517c9769daa20b93140c2136;p=ceph.git crimson/osd: fix compilation guard around specialization for libfmt => 9 Signed-off-by: Radoslaw Zarzynski --- diff --git a/src/crush/CrushLocation.h b/src/crush/CrushLocation.h index 2d2d4b52b966..026ad107d833 100644 --- a/src/crush/CrushLocation.h +++ b/src/crush/CrushLocation.h @@ -37,8 +37,9 @@ private: std::ostream& operator<<(std::ostream& os, const CrushLocation& loc); } -#endif #if FMT_VERSION >= 90000 template <> struct fmt::formatter : fmt::ostream_formatter {}; #endif + +#endif