You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
When you hover over a method, the documentation for that method shows, but the @brief, extra lines, @code, etc. are all crammed together in one blob of text. This must be a bug, since the comment is virtually useless if no formatting or whitespace separation is present.
Code Example
/** * @brief This is the summary * * This is continued documentation, which is formatted with blank lines between sections * * @code * print("this is a string"); * int i = 0; * @endcode*/
Expected result
void ArmSolver::setArmBase(Position *armBase)
This is the summary
This is continued documentation, which is formatted
with blank lines between sections
print("this is a string");
int i = 0;
Parameters:
armBase
Actual result
void ArmSolver::setArmBase(Position *armBase)
This is the summary This is continued documentation, which is formatted with blank lines between sections print("this is a string") int i = 0;
Parameters:
armBase
Your System:
OS: Windows 10
VS Code Version 1.84.2
Plugin 1.4.0
The text was updated successfully, but these errors were encountered:
This extension doesn't provide the hover information. It's a bug inside the cpptools extension of vscode microsoft/vscode-cpptools#10039. The doxygen itself is perfectly fine:
Describe the bug
When you hover over a method, the documentation for that method shows, but the @brief, extra lines, @code, etc. are all crammed together in one blob of text. This must be a bug, since the comment is virtually useless if no formatting or whitespace separation is present.
Code Example
Expected result
Actual result
Your System:
The text was updated successfully, but these errors were encountered: