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 08c3b1a commit f684e19Copy full SHA for f684e19
lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp
@@ -41,9 +41,8 @@ CPPLanguageRuntime::CPPLanguageRuntime(Process *process)
41
: LanguageRuntime(process) {}
42
43
bool CPPLanguageRuntime::IsAllowedRuntimeValue(ConstString name) {
44
- // FIXME: use a list when the list grows more.
45
return name == g_this ||
46
- // Artificial coroutine-related variables emitted by clang.
+ // Artificial coroutine-related variables emitted by clang.
47
name == ConstString("__promise") ||
48
name == ConstString("__coro_frame");
49
}
0 commit comments