[Lldb-commits] [lldb] [lldb] Better matching of types in anonymous namespaces (PR #102111)

Michael Buch via lldb-commits lldb-commits at lists.llvm.org
Tue Aug 6 04:34:14 PDT 2024


================
@@ -266,6 +269,11 @@ class TypeQuery {
   bool GetIgnoreModules() const { return (m_options & e_ignore_modules) != 0; }
   void SetIgnoreModules() { m_options &= ~e_ignore_modules; }
 
+  bool GetStrictNamespaces() const {
+    return (m_options & e_strict_namespaces) != 0;
+  }
+  void SetStrictNamespaces() { m_options &= ~e_strict_namespaces; }
----------------
Michael137 wrote:

Wouldn't this clear the bit?

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


More information about the lldb-commits mailing list