From 9687af766089e11005bdb50c53d37f6809409b2b Mon Sep 17 00:00:00 2001 From: Robert Falkenberg Date: Thu, 12 May 2022 06:42:15 +0200 Subject: [PATCH] add missing include for build with GCC 12 Related info: https://gcc.gnu.org/gcc-12/porting_to.html --- lib/include/srsran/srslog/bundled/fmt/core.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/include/srsran/srslog/bundled/fmt/core.h b/lib/include/srsran/srslog/bundled/fmt/core.h index d676f27e5..04a85f295 100644 --- a/lib/include/srsran/srslog/bundled/fmt/core.h +++ b/lib/include/srsran/srslog/bundled/fmt/core.h @@ -8,7 +8,8 @@ #ifndef FMT_CORE_H_ #define FMT_CORE_H_ -#include // std::FILE +#include +#include // std::FILE #include #include #include