Sometimes, when I look at the header files, I would like to add something a little to the documentation (doxygen). This may be a brief remark about using some function parameter or just fixing a small typo.
But then I think: no, this will cause recompilation in the next call make! And for some basic headers, the whole project was recompiled, which can take a lot of time. So it doesn’t matter!
Is there a solution to this dilemma? Are there approaches where functions / classes are not documented directly in the headers? Or are there (plans) smart ones makewho would notice that only some comments have changed, but recompilation is not required?
Frank source
share