Hello all,
I've noticed that the matching braces will be confused by #ifdef's. See the following example:void Function(const bool condition, const bool special_condition)
{
#ifdef SPECIALCONDITION
if (condition || special_condition) {
#else
if (condition) {
#endif
// Do something
}
}
The last brace isn't matched with the first brace (of Function), but with the first if-statement. I can imagine this is a tough one for Visual Assist. And I must admit that this (luckily) isn't something that I encounter frequently in the code of my company, but in some special cases it does.
It not something that is critical, so I want to ask the team of WholeTomato nicely if they can look into it sometime...
Thank you in advance.
With kind reagards,
Patrick Luja