Open GoogleCodeExporter opened 8 years ago
I've seen the same problem, often if you have taken single line function call,
and broken it across multiple lines for a change, the raw output always only
shows insertions of newlines, but after semantic cleanup we have larger
deletions and insertions, and what it determines to be part of the those
deletions and insertions is quite variable depending on the level of
indentation/spaces, as noted in the bug above.
For example:
Before Text:
EXPECT_SUCCESS(SM::getMV(noSubject, S::Builder().set_values(values).finalize(), dummy, results));
After Text:
EXPECT_SUCCESS(SM::getRMV(noSubject,
S::Builder().set_values(values).finalize(),
dummy,
results));
Diff and then semantic cleanup:
EXPECT_SUCCESS(SM::getRMV(noSubject,<ins>¶</ins>
S::Builder().set_values(values).finalize(), <del>dummy,</del><ins>¶
dummy,¶</ins>
results));
Original comment by d...@twkie.net
on 27 Nov 2012 at 11:57
Original issue reported on code.google.com by
chris...@gmail.com
on 30 Mar 2012 at 2:46Attachments: