Author: Muhammad Omair Javaid Date: 2026-01-12T17:16:07+05:00 New Revision: 4415ea5bd34e2228e92dddb529d706006b5d404e
URL: https://github.com/llvm/llvm-project/commit/4415ea5bd34e2228e92dddb529d706006b5d404e DIFF: https://github.com/llvm/llvm-project/commit/4415ea5bd34e2228e92dddb529d706006b5d404e.diff LOG: [lldb] Fix TestFrameVarDILCast.py build on Windows AArch64 This patch adds <cstddef> to main.cpp in TestFrameVarDILCast.py so that std::nullptr_t is properly declared. It fixes the TestFrameVarDILCast.py compile failure observed on the LLDB Windows AArch64 buildbot: https://lab.llvm.org/buildbot/#/builders/141 The issue was introduced by commit 539cf92 in #170332. Added: Modified: lldb/test/API/commands/frame/var-dil/expr/Casts/main.cpp Removed: ################################################################################ diff --git a/lldb/test/API/commands/frame/var-dil/expr/Casts/main.cpp b/lldb/test/API/commands/frame/var-dil/expr/Casts/main.cpp index 3977283f54cc6..b0bf7605b15c7 100644 --- a/lldb/test/API/commands/frame/var-dil/expr/Casts/main.cpp +++ b/lldb/test/API/commands/frame/var-dil/expr/Casts/main.cpp @@ -1,6 +1,7 @@ // Type Casting, main.cpp #include <limits> +#include <cstddef> namespace ns { _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
