Author: David Spickett Date: 2026-05-13T14:09:46+01:00 New Revision: 57e608933de9f34b5ccb29d4f3e41fbaec03d71f
URL: https://github.com/llvm/llvm-project/commit/57e608933de9f34b5ccb29d4f3e41fbaec03d71f DIFF: https://github.com/llvm/llvm-project/commit/57e608933de9f34b5ccb29d4f3e41fbaec03d71f.diff LOG: [lldb][test] Add missing include in TestFrameVarDILCast test program (#197432) Fixes aaad6a201f0f13762c45727faacf5347be577a23 / #191908. 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 e29acbbc9bd36..a6ef219320a29 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 @@ -2,6 +2,7 @@ #include <limits> #include <cstddef> +#include <cstdint> namespace ns { _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
