From 607d011c440aa74955400da3d9ce6b583864aef0 Mon Sep 17 00:00:00 2001 From: Matan Breizman Date: Sun, 16 Feb 2025 14:30:13 +0000 Subject: [PATCH] test/objectstore/..ops_replayer: cleanup include std::format clang16 hides std::format behind `-fexperimental-library` [1]. This is no longer the case with clang 17 [2]. As std::fmt is not used in this file we can clean it up for now. Note: Future commits will aim to switch to clang17. [1] https://prereleases.llvm.org/16.0.0/rc3/projects/libcxx/docs/UsingLibcxx.html#extensions-to-format [2] https://releases.llvm.org/17.0.1/projects/libcxx/docs/ReleaseNotes/17.html Signed-off-by: Matan Breizman --- src/test/objectstore/allocsim/ops_replayer.cc | 1 - 1 file changed, 1 deletion(-) diff --git a/src/test/objectstore/allocsim/ops_replayer.cc b/src/test/objectstore/allocsim/ops_replayer.cc index c5908d9f57603..057d19d90993c 100644 --- a/src/test/objectstore/allocsim/ops_replayer.cc +++ b/src/test/objectstore/allocsim/ops_replayer.cc @@ -21,7 +21,6 @@ #include #include #include -#include #include -- 2.39.5