From 4d91711e5c35fa469c6978d9a40233760c9cf130 Mon Sep 17 00:00:00 2001 From: Saba Fallah <10401143+sfallah@users.noreply.github.com> Date: Fri, 19 Dec 2025 11:14:36 +0100 Subject: [PATCH] fixed merge build issue --- tools/mtmd/clip.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/tools/mtmd/clip.cpp b/tools/mtmd/clip.cpp index 8a631ca65b..a807e28274 100644 --- a/tools/mtmd/clip.cpp +++ b/tools/mtmd/clip.cpp @@ -834,18 +834,23 @@ static ggml_cgraph * clip_image_build_graph(clip_ctx * ctx, const clip_image_f32 case PROJECTOR_TYPE_GLM_EDGE: { builder = std::make_unique(ctx, img); - } break; + } + break; case PROJECTOR_TYPE_DEEPSEEKOCR: { builder = std::make_unique(ctx, img); + } + break; case PROJECTOR_TYPE_LFM2A: { builder = std::make_unique(ctx, img); - } break; + } + break; case PROJECTOR_TYPE_GLM4V: { builder = std::make_unique(ctx, img); - } break; + } + break; default: GGML_ABORT("missing cgraph builder"); }