This revision was landed with ongoing or failed builds. This revision was automatically updated to reflect the committed changes. Closed by commit rGbcd8422d7506: [clangd] Fix argument type (bool->float). (authored by adamcz).
Repository: rG LLVM Github Monorepo CHANGES SINCE LAST ACTION https://reviews.llvm.org/D88970/new/ https://reviews.llvm.org/D88970 Files: clang-tools-extra/clangd/tool/ClangdMain.cpp Index: clang-tools-extra/clangd/tool/ClangdMain.cpp =================================================================== --- clang-tools-extra/clangd/tool/ClangdMain.cpp +++ clang-tools-extra/clangd/tool/ClangdMain.cpp @@ -185,7 +185,7 @@ Hidden, }; -opt<bool> DecisionForestBase{ +opt<float> DecisionForestBase{ "decision-forest-base", cat(Features), desc("Base for exponentiating the prediction from DecisionForest."),
Index: clang-tools-extra/clangd/tool/ClangdMain.cpp =================================================================== --- clang-tools-extra/clangd/tool/ClangdMain.cpp +++ clang-tools-extra/clangd/tool/ClangdMain.cpp @@ -185,7 +185,7 @@ Hidden, }; -opt<bool> DecisionForestBase{ +opt<float> DecisionForestBase{ "decision-forest-base", cat(Features), desc("Base for exponentiating the prediction from DecisionForest."),
_______________________________________________ cfe-commits mailing list cfe-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits