================ @@ -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 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits