[clang] [clang-repl] adding documentation and information for %commands (PR #150348)
David Spickett via cfe-commits
cfe-commits at lists.llvm.org
Wed Jul 30 02:02:48 PDT 2025
================
@@ -185,7 +185,7 @@ struct ReplListCompleter {
clang::Interpreter &MainInterp;
ReplListCompleter(clang::IncrementalCompilerBuilder &CB,
clang::Interpreter &Interp)
- : CB(CB), MainInterp(Interp){};
+ : CB(CB), MainInterp(Interp) {};
----------------
DavidSpickett wrote:
Remove this change. I know clang-format probably made it, but it's not part of what you're doing here. If the formatter check fails and it's just this space, we can ignore it.
If you find clang-format making way more changes, you can send a PR to reformat a file, then make changes on top of that.
This is documented https://llvm.org/docs/Contributing.html#how-to-submit-a-patch.
For tiny stuff like this, we just ask folks to remove the modification and pay less attention to the formatting bot.
https://github.com/llvm/llvm-project/pull/150348
More information about the cfe-commits
mailing list