https://github.com/Nerixyz created https://github.com/llvm/llvm-project/pull/196335
Fixes the failure on `lldb-aarch64-ubuntu` (https://lab.llvm.org/buildbot/#/builders/59/builds/34161) after #195514. >From fdbb427c11a40d0399039c522e2649990d8e3069 Mon Sep 17 00:00:00 2001 From: Nerixyz <[email protected]> Date: Thu, 7 May 2026 16:47:25 +0200 Subject: [PATCH] [lldb] Include `<cstring>` for `memset` --- lldb/test/API/lang/cpp/char1632_t/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lldb/test/API/lang/cpp/char1632_t/main.cpp b/lldb/test/API/lang/cpp/char1632_t/main.cpp index e38188cf85dee..9520b52711008 100644 --- a/lldb/test/API/lang/cpp/char1632_t/main.cpp +++ b/lldb/test/API/lang/cpp/char1632_t/main.cpp @@ -1,4 +1,5 @@ #include <assert.h> +#include <cstring> #include <string> #define UASZ 64 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
