From a4b6f12cdb290b90667399c289ffcdae0e678fba Mon Sep 17 00:00:00 2001 From: Robert Quill Date: Tue, 27 Aug 2024 22:49:47 +0100 Subject: [PATCH] Add missing include of fmt/core.h Should fix the Python build Signed-off-by: Robert Quill --- src/Memory.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Memory.cpp b/src/Memory.cpp index c086d820..caf08dfd 100644 --- a/src/Memory.cpp +++ b/src/Memory.cpp @@ -1,5 +1,6 @@ // SPDX-License-Identifier: Apache-2.0 +#include #include "kompute/Memory.hpp" #include "kompute/Tensor.hpp" #include "kompute/Image.hpp"