从命令行自动应用Clang的修复提示

时间:2018-04-10 08:35:09

标签: c++ clang

Clang(和GCC)编译错误可以提供有关如何修复它们的建议:" Fix-it Hints"。 Clang(或者可能是另一个LLVM工具)是否有可以应用这些提示的选项?我在https://clang.llvm.org/docs/UsersManual.html中看不到一个。显然,这样的程序可以使用-fdiagnostics-parseable-fixits编写;那不是我要问的。

1 个答案:

答案 0 :(得分:4)

 -fix-only-warnings      Apply fix-it advice only for warnings, not errors
 -fix-what-you-can       Apply fix-it advice even in the presence of unfixable errors
 -fixit-recompile        Apply fix-it changes and recompile
 -fixit-to-temporary     Apply fix-it changes to temporary files
 -fixit=<value>          Apply fix-it advice creating a file with the given suffix
 -fixit                  Apply fix-it advice to the input source