Details
Details
Diff Detail
Diff Detail
- Repository
- rL LLVM
Event Timeline
clang-move/ClangMove.cpp | ||
---|---|---|
414 ↗ | (On Diff #77983) | s/ClassName/SymbolName/ |
417 ↗ | (On Diff #77983) | I guess HasAnySymbolNames would be better when used in the matchers below. |
test/clang-move/Inputs/function_test.h | ||
1 ↗ | (On Diff #77983) | Maybe add a test case where both classes and functions exist. |
test/clang-move/move-function.cpp | ||
9 ↗ | (On Diff #77983) | Shouldn't there be empty lines around this line? |
18 ↗ | (On Diff #77983) | Why does this become one line after being moved? Shouldn't it be: template<typename T> void h(T t) {} |
Comment Actions
Add one more test and rename variables.
test/clang-move/move-function.cpp | ||
---|---|---|
9 ↗ | (On Diff #77983) | There should be. FileCheck will skip empty lines and try to find next matching line here. Have added some \n checks. |
18 ↗ | (On Diff #77983) | formatAndApplyReplacements does this for us ,and this is actually LLVM code style... |