Details
Details
Diff Detail
Diff Detail
- Repository
- rC Clang
Event Timeline
Comment Actions
See the inline comments. Please run clang-format over this patch after addressing them (there are a few indentation issues).
| include/clang/Frontend/CompilerInstance.h | ||
|---|---|---|
| 779 | "Set" -> "set", LLVM code style requires lower case first letters in function names (even though it's sadly may be inconsistent with other code that's still using the other style...) | |
| 783 | LLVM convention is to call this takeX and not getX when it moves the member OutputStream to the caller. get usually doesn't reset the member variable. | |
| lib/Frontend/CompilerInstance.cpp | ||
| 65 ↗ | (On Diff #136041) | Don't think we need that. |
"Set" -> "set", LLVM code style requires lower case first letters in function names (even though it's sadly may be inconsistent with other code that's still using the other style...)