[Lldb-commits] [lldb] [lldb] Include `<cstring>` for `memset` (PR #196335)

via lldb-commits lldb-commits at lists.llvm.org
Thu May 7 07:49:09 PDT 2026


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 <nerixdev at outlook.de>
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



More information about the lldb-commits mailing list