Sometimes, when I look through my header files I'd like to add something little to the (doxygen) documentation. That might be a quick note about the use of some function parameter, or just fixing a little typo.
But then I think: Oh no, that'll trigger a recompile on the next make
call! And for certain basic headers the whole project would recompile, which can take a long time. So, nevermind!
Is there a solution to this dilemma? Are there approaches where the functions/classes are documented not directly in the headers? Or are there (plans for) a smart make
that would notice that only some comment has changed, but no recompilation is necessary?