diff --git a/Userland/Libraries/LibCpp/Parser.cpp b/Userland/Libraries/LibCpp/Parser.cpp index 61ac4f350c..d44a91ce12 100644 --- a/Userland/Libraries/LibCpp/Parser.cpp +++ b/Userland/Libraries/LibCpp/Parser.cpp @@ -1017,7 +1017,7 @@ Vector Parser::get_todo_entries() const Vector ret; for (auto& token : m_tokens) { if (token.type() == Token::Type::Comment) { - if (token.text().contains("TODO")) { + if (token.text().contains("TODO") || token.text().contains("FIXME")) { ret.append({ token.text(), m_filename, token.start().line, token.start().column }); } }