Files
codeql/cpp/ql/test/query-tests/Documentation/TodoComments/todo_fixme.cpp
Owen Mansel-Chan f54debd65a C++
2026-06-10 22:57:08 +02:00

14 lines
414 B
C++

// TODO: Thing 1. // $ Alert[cpp/todo-comment]
/* TODO: Thing 2. */ // $ Alert[cpp/todo-comment]
/**
* TODO: Thing 3.
*/ // $ Alert[cpp/todo-comment]
// For more things, read the /usr/local/doc/TODO file.
// FIXME: Bug 1. // $ Alert[cpp/fixme-comment]
/* FIXME: Bug 2. */ // $ Alert[cpp/fixme-comment]
/**
* FIXME: Bug 3.
*/ // $ Alert[cpp/fixme-comment]
// For more bugs, read the /usr/local/doc/FIXME file.