From 1972669f491e8c74b86c83ff88e6b88a85927828 Mon Sep 17 00:00:00 2001 From: Morgan Funtowicz Date: Fri, 12 Jul 2024 19:23:59 +0000 Subject: [PATCH] remove fmt import --- backends/trtllm/include/backend.h | 1 - backends/trtllm/lib/backend.cpp | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/backends/trtllm/include/backend.h b/backends/trtllm/include/backend.h index 1823ddf9..12347ef4 100644 --- a/backends/trtllm/include/backend.h +++ b/backends/trtllm/include/backend.h @@ -10,7 +10,6 @@ #include #include -#include #include #include diff --git a/backends/trtllm/lib/backend.cpp b/backends/trtllm/lib/backend.cpp index ce778bb2..b7a0bb4e 100644 --- a/backends/trtllm/lib/backend.cpp +++ b/backends/trtllm/lib/backend.cpp @@ -1,6 +1,7 @@ #include #include +#include "fmt/format.h" #include #include "backend.h"