From 29ce31b1a3afa65b3987c8ca79624e0e9aa25b19 Mon Sep 17 00:00:00 2001 From: Piotr Wilkin Date: Sat, 7 Feb 2026 23:55:53 +0100 Subject: [PATCH] Fix windows build --- tests/test-chat-template.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test-chat-template.cpp b/tests/test-chat-template.cpp index 48aac31d75..8b331129b1 100644 --- a/tests/test-chat-template.cpp +++ b/tests/test-chat-template.cpp @@ -17,6 +17,10 @@ #include "jinja/lexer.h" #include "jinja/caps.h" +#ifdef WIN32 +#include +#endif + using json = nlohmann::ordered_json; static int main_automated_tests(void);