[Lldb-commits] [lldb] [lldb][Commands][NFC] Extract memory find expression evaluation into helpers (PR #143686)

via lldb-commits lldb-commits at lists.llvm.org
Wed Jun 11 04:24:38 PDT 2025


github-actions[bot] wrote:

<!--LLVM CODE FORMAT COMMENT: {clang-format}-->


:warning: C/C++ code formatter, clang-format found issues in your code. :warning:

<details>
<summary>
You can test this locally with the following command:
</summary>

``````````bash
git-clang-format --diff HEAD~1 HEAD --extensions cpp -- lldb/source/Commands/CommandObjectMemory.cpp lldb/test/API/functionalities/memory/find/main.cpp
``````````

</details>

<details>
<summary>
View the diff from clang-format here.
</summary>

``````````diff
diff --git a/lldb/test/API/functionalities/memory/find/main.cpp b/lldb/test/API/functionalities/memory/find/main.cpp
index a5ee27c5c..15c8df1a9 100644
--- a/lldb/test/API/functionalities/memory/find/main.cpp
+++ b/lldb/test/API/functionalities/memory/find/main.cpp
@@ -1,8 +1,7 @@
 #include <stdio.h>
 #include <stdint.h>
 
-template<size_t T>
-struct [[gnu::packed]] Payload {
+template <size_t T> struct [[gnu::packed]] Payload {
   uint8_t data[T];
 };
 

``````````

</details>


https://github.com/llvm/llvm-project/pull/143686


More information about the lldb-commits mailing list