SES matches brackets in C strings(char*)/chars..
Does anyone have a solution or fix to this problem?
I'm currently handling JSON and it has become quite annoying.
Example:
{
if (1)
{
char test = '}';
}
}
SES will then match the bracket in '}' with the one there is right before char test.
Same goes for "strings" example:
{
char* test = "}";
}
Does anyone have a solution or fix to this problem?
I'm currently handling JSON and it has become quite annoying.
Example:
{
if (1)
{
char test = '}';
}
}
SES will then match the bracket in '}' with the one there is right before char test.
Same goes for "strings" example:
{
char* test = "}";
}