Hi,
This probably has been discussed before but I could not find it.
Is there a way to ignore the { being on a different line in C/C++ ?
example
if (true){
}
vs
if(true)
{
}
will be ignored and not shown as a difference..
Thanks
This probably has been discussed before but I could not find it.
Is there a way to ignore the { being on a different line in C/C++ ?
example
if (true){
}
vs
if(true)
{
}
will be ignored and not shown as a difference..
Thanks
Comment