[Lldb-commits] [lldb] [LLDB] Add more helper functions to CompilerType class (second try). (PR #73472)

Alex Langford via lldb-commits lldb-commits at lists.llvm.org
Mon Nov 27 09:51:26 PST 2023


================
@@ -302,6 +303,256 @@ bool CompilerType::IsBeingDefined() const {
   return false;
 }
 
+bool CompilerType::IsSmartPtrType() const {
+  // These regular expressions cover shared, unique and weak pointers both from
+  // stdlibc++ and libc+++.
+
+  static llvm::Regex k_libcxx_std_unique_ptr_regex(
----------------
bulbazord wrote:

What does the prefix k mean here?

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


More information about the lldb-commits mailing list