[Lldb-commits] [lldb] [lldb][test] Add test for detecting CV-quals of explicit object member functions (PR #125053)
via lldb-commits
lldb-commits at lists.llvm.org
Thu Jan 30 04:11:45 PST 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 b68b4f64a2bd2e0a22375cf89a4d655fc3667e11 310d7d6362a2f36503a9d8f94713fdb16c3bf65c --extensions cpp -- lldb/test/Shell/SymbolFile/DWARF/explicit-member-function-quals.cpp
``````````
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/test/Shell/SymbolFile/DWARF/explicit-member-function-quals.cpp b/lldb/test/Shell/SymbolFile/DWARF/explicit-member-function-quals.cpp
index 8e742600dc..675d964323 100644
--- a/lldb/test/Shell/SymbolFile/DWARF/explicit-member-function-quals.cpp
+++ b/lldb/test/Shell/SymbolFile/DWARF/explicit-member-function-quals.cpp
@@ -16,7 +16,7 @@
struct Foo {
void Method(this Foo) {}
- void cMethod(this Foo const&) {}
- void vMethod(this Foo volatile&) {}
- void cvMethod(this Foo const volatile&) {}
+ void cMethod(this Foo const &) {}
+ void vMethod(this Foo volatile &) {}
+ void cvMethod(this Foo const volatile &) {}
} f;
``````````
</details>
https://github.com/llvm/llvm-project/pull/125053
More information about the lldb-commits
mailing list