[Lldb-commits] [lldb] [lldb][ValueObject][NFC] Remove unused SyntheticChildrenFrontEnd member (PR #164249)
via lldb-commits
lldb-commits at lists.llvm.org
Mon Oct 20 06:06:17 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 origin/main HEAD --extensions h -- lldb/include/lldb/DataFormatters/TypeSynthetic.h --diff_from_common_commit
``````````
:warning:
The reproduction instructions above might return results for more than one PR
in a stack if you are using a stacked PR workflow. You can limit the results by
changing `origin/main` to the base branch/commit you want to compare against.
:warning:
</details>
<details>
<summary>
View the diff from clang-format here.
</summary>
``````````diff
diff --git a/lldb/include/lldb/DataFormatters/TypeSynthetic.h b/lldb/include/lldb/DataFormatters/TypeSynthetic.h
index 4c57a80ee..5779c5de0 100644
--- a/lldb/include/lldb/DataFormatters/TypeSynthetic.h
+++ b/lldb/include/lldb/DataFormatters/TypeSynthetic.h
@@ -29,8 +29,7 @@ protected:
ValueObject &m_backend;
public:
- SyntheticChildrenFrontEnd(ValueObject &backend)
- : m_backend(backend) {}
+ SyntheticChildrenFrontEnd(ValueObject &backend) : m_backend(backend) {}
virtual ~SyntheticChildrenFrontEnd() = default;
``````````
</details>
https://github.com/llvm/llvm-project/pull/164249
More information about the lldb-commits
mailing list