But passing it through doxygen results in the following code:
{
u32count=0; /* Counter for bits set to 1 */while(mask){/* While there are bits left in the mask */if(mask&1){/* If the least significant bit is 1 */count++; /* Increment counter */}
Many methods are affected by the same issue, and I do not understand the reason. I searched for special characters in the code, refactored it, rewrote it, but it does not help and the truncated documentation persists.
Do you know the reason?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I am wondering why doxygen truncates the source code. I want to document the following method, for example:
But passing it through doxygen results in the following code:
Many methods are affected by the same issue, and I do not understand the reason. I searched for special characters in the code, refactored it, rewrote it, but it does not help and the truncated documentation persists.
Do you know the reason?