================ @@ -30,6 +30,16 @@ struct DemangledNameInfo { /// \endcode std::pair<size_t, size_t> BasenameRange; + /// A [start, end) pair for the function template arguments. + /// The basename is the name without scope qualifiers + /// and without template parameters. E.g., + /// \code{.cpp} + /// void foo::bar<int>::someFunc<float>(int) const && + /// ^ ^ + /// start end ---------------- Michael137 wrote:
Does it really start at the opening bracket? I think it starts at the `f` in this example. And ends at `>` https://github.com/llvm/llvm-project/pull/150999 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits