Re: [cmake-developers] Source code ///! comments

2019-03-26 Thread Sebastian Holtermann
Looking through the source code I found various comments starting with "///!" If Doxygen is targeted, the comment should start with either "///" or "//!". It's likely a typo. For reference, I personally prefer `/** */`. Okay, then why not do a cleanup that replaces "///!" with "//!"? I'll

Re: [cmake-developers] Source code ///! comments

2019-03-26 Thread Brad King via cmake-developers
On 3/26/19 8:28 AM, Sebastian Holtermann wrote: > Looking through the source code I found various comments > starting with "///!" > If Doxygen is targeted, the comment should start with either "///" or > "//!". It's likely a typo. For reference, I personally prefer `/** */`. -Brad -- Powered

[cmake-developers] Source code ///! comments

2019-03-26 Thread Sebastian Holtermann
Looking through the source code I found various comments starting with "///!" E.g.: ``` ///! myFunction description myFunction() ``` To my blame, I've use it as well. But is this a valid meta notation? If Doxygen is targeted, the comment should start with either "///" or "//!". When the