Reputation: 698
I want to add a Windows path that contains backslashes to a doxygen comment like this:
/**
*
* Returns common AppData directory, usually C:\ProgramData\
*
*/
I tried it with two backslashes but CLion always displays it as new section. Is this a problem with CLion or am I doing it wrong?
Upvotes: 0
Views: 989
Reputation: 9057
Doxygen will see the \ProgramData
as a possible command and leave it out. Solutions for this are either:
C:\\ProgramData\\
`C:\ProgramData\`
Upvotes: 1