Maximilien Lincourt

- Total activity 21
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 8
-
Created Is there a ReSharper inspection to catch compiler static analysis warning C6216
Hi, I have a function like this that contains a macro that returns a default value. #define ASSERT_RETURN(condition, returnValue) \do \{ \if (!(condition)) \{ \assert(condition); \return returnVal... -
Created Syntax error/warning in doxygen comments.
Hello, (Visual Studio 2017 and ReSharper C++ EAP 2019.3 EAP 7) I get an "Unexpected HTML closing tag </param> in the comment block.There is no space between the /// and the <param... If I insert a... -
Created Is there a way to disambiguous there two variable declaration (RAII) (local variable never used)
Hi, This is an MFC example, but we have similar C++ RAII constructs (like lock guards) that generate the same warnings.Is there a way to catch the unused variable s without catching the wait con... -
Created What analysis options I need to catch the following c++ error.
Hi, what "inspection severity" I would need to enable to catch the following error ? Thanks. class Test { public: Test(int i) : m_i(i) { std::cout << m_i << std::endl; }; in... -
Created Is there a way to uncheck/disable all the code analysis
Hi, I'd like to uncheck or change the severity of all of the code analysis inspections.Now, I can only uncheck one at a time. (for example, 213 Clang-Tidy Checks).Is there a configuration file that...