[clang-tools-extra] [clangd] Make EnableFunctionArgSnippets option string-typed (PR #121178)
Nathan Ridge via cfe-commits
cfe-commits at lists.llvm.org
Mon Dec 30 17:47:22 PST 2024
================
@@ -242,13 +242,13 @@ opt<std::string> FallbackStyle{
init(clang::format::DefaultFallbackStyle),
};
-opt<int> EnableFunctionArgSnippets{
+opt<std::string> EnableFunctionArgSnippets{
----------------
HighCommander4 wrote:
Thanks for the suggestion. I tried this briefly, but I think it makes the `--help` output too noisy because it prints a separate line for each spelling of `"true"`, `"True"`, etc.
https://github.com/llvm/llvm-project/pull/121178
More information about the cfe-commits
mailing list