[Lldb-commits] [lldb] [LLDB] Fix warnings in DIL. (PR #134778)
via lldb-commits
lldb-commits at lists.llvm.org
Tue Apr 8 08:30:35 PDT 2025
================
@@ -116,8 +116,10 @@ class DILParser {
lldb::DynamicValueType m_use_dynamic;
bool m_use_synthetic;
- bool m_fragile_ivar;
- bool m_check_ptr_vs_member;
+ // The following are not currently used, but will be used as more
+ // functionality is added to DIL.
+ bool m_fragile_ivar __attribute__((unused));
+ bool m_check_ptr_vs_member __attribute__((unused));
----------------
cmtice wrote:
Done.
https://github.com/llvm/llvm-project/pull/134778
More information about the lldb-commits
mailing list