We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8634de5 commit 48e2ea0Copy full SHA for 48e2ea0
lldb/source/Plugins/Language/CPlusPlus/CPlusPlusLanguage.cpp
@@ -209,7 +209,8 @@ static bool IsTrivialBasename(const llvm::StringRef &basename) {
209
}
210
211
/// A context is trivial if an only if it matches this pattern.
212
-/// "^\s*([A-Za-z_:]*)\s*$".
+/// "^\s*([A-Za-z_:]*)\s*$". for example function `foo::bar::func()`
213
+/// has a trivial context but. but `foo<int>::bar::func()` doesn't.
214
static bool IsTrivialContext(llvm::StringRef context) {
215
// remove trailing or leading whitespace.
216
context = context.trim();
0 commit comments