What is the meaning of #XXX in code comments?

Viewed 74092

I have seen this a lot in code, even vim marks it as a special case. #TODO and #FIXME are two other fix markers vim highlights but what does #XXX mean?

10 Answers

I use // XXX so I don't have to remember line numbers. Instead I just search for the XXX when I want to return to that piece of code.

Related