If I have source code that is:
fn( param1, param2, param3 );
... that gets reformatted to (for example):
fn (
param1,
param2,
param3 );
Is there any way to get BC3 to treat those changes as unimportant differences?
fn( param1, param2, param3 );
... that gets reformatted to (for example):
fn (
param1,
param2,
param3 );
Is there any way to get BC3 to treat those changes as unimportant differences?
Comment