From 3b5d04802b375e758dd89a878c4131ec88c5cb5b Mon Sep 17 00:00:00 2001 From: Tim Clephas Date: Thu, 19 Dec 2024 14:01:03 +0100 Subject: [PATCH] Document workaround --- src/socketcan_bridge.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/socketcan_bridge.cpp b/src/socketcan_bridge.cpp index 37e58d9..62abce0 100644 --- a/src/socketcan_bridge.cpp +++ b/src/socketcan_bridge.cpp @@ -21,6 +21,7 @@ namespace nobleo_socketcan_bridge { std::ostream & operator<<(std::ostream & os, const can_msgs::msg::Frame & msg) { + // fmt::print is not functional: https://github.com/fmtlib/fmt/issues/3382 os << fmt::format( "{:0>3X} [{}] {}", msg.id, msg.dlc, fmt::join(msg.data.begin(), msg.data.begin() + msg.dlc, " "));