Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
Comment Actions
This is great!
clang-move/ClangMove.cpp | ||
---|---|---|
70–74 ↗ | (On Diff #73422) | Maybe: return (SM->getLocForEndOfFile(LocInfo.first) == EndLoc) ? EndLoc : EndLoc.getLocWithOffset(1); |
343 ↗ | (On Diff #73422) | Looks like GetFullRange is called twice on the same Decl: one for creating insertion replacement and one for deletion replacement. This seems to be a duplicate. |
Comment Actions
Address review comments.
clang-move/ClangMove.cpp | ||
---|---|---|
343 ↗ | (On Diff #73422) | Good point. Yeah, currently the GetFullRange is called twice. Have added a FIXME. |