================
@@ -230,6 +232,10 @@ class SymbolCompleter : public Completer {
// Now add the functions & symbols to the list - only add if unique:
for (const SymbolContext &sc : sc_list) {
+ if (m_match_set.size() >= m_request.GetMaxNumberOfResultsToAdd()) {
+ break;
+ }
----------------
JDevlieghere wrote:
```suggestion
if (m_match_set.size() >= m_request.GetMaxNumberOfResultsToAdd())
break;
```
https://github.com/llvm/llvm-project/pull/135565
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits