Skip to content

Commit f684e19

Browse files
committed
Remove an unneeded FIXME.
1 parent 08c3b1a commit f684e19

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

lldb/source/Plugins/LanguageRuntime/CPlusPlus/CPPLanguageRuntime.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,8 @@ CPPLanguageRuntime::CPPLanguageRuntime(Process *process)
4141
: LanguageRuntime(process) {}
4242

4343
bool CPPLanguageRuntime::IsAllowedRuntimeValue(ConstString name) {
44-
// FIXME: use a list when the list grows more.
4544
return name == g_this ||
46-
// Artificial coroutine-related variables emitted by clang.
45+
// Artificial coroutine-related variables emitted by clang.
4746
name == ConstString("__promise") ||
4847
name == ConstString("__coro_frame");
4948
}

0 commit comments

Comments
 (0)