From f1e3eb4249db68d97be352c0adf16eef7ae53795 Mon Sep 17 00:00:00 2001 From: Sergey Fedorov Date: Sat, 5 Apr 2025 23:46:00 +0800 Subject: [PATCH] common : fix includes in arg.cpp and gemma3-cli.cpp (#12766) * arg.cpp: add a missing include * gemma3-cli.cpp: fix cinttypes include --- common/arg.cpp | 1 + examples/llava/gemma3-cli.cpp | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/common/arg.cpp b/common/arg.cpp index 96facce67..cdf897025 100644 --- a/common/arg.cpp +++ b/common/arg.cpp @@ -18,6 +18,7 @@ #include #include #include +#include #include #include #include diff --git a/examples/llava/gemma3-cli.cpp b/examples/llava/gemma3-cli.cpp index fe577510e..4f89c0e15 100644 --- a/examples/llava/gemma3-cli.cpp +++ b/examples/llava/gemma3-cli.cpp @@ -10,7 +10,7 @@ #include #include -#include +#include #if defined (__unix__) || (defined (__APPLE__) && defined (__MACH__)) #include