=?utf-8?q?Björn?= Svensson <bjorn.a.svens...@est.tech>
Message-ID:
In-Reply-To: <llvm.org/llvm/llvm-project/pull/73...@github.com>


================
@@ -107,6 +119,14 @@ class HICPPModule : public ClangTidyModule {
     CheckFactories.registerCheck<cppcoreguidelines::ProTypeVarargCheck>(
         "hicpp-vararg");
   }
+
+  ClangTidyOptions getModuleOptions() override {
+    ClangTidyOptions Options;
+    ClangTidyOptions::OptionMap &Opts = Options.CheckOptions;
+    Opts["hicpp-ignored-remove-result.CheckedFunctions"] = CheckedFunctions;
----------------
PiotrZSL wrote:

Personally I'm not fan of such aliases. For me those should be simply new 
checks (aka check that inherit from a base class, override configuration and 
such configuration should not be visible outside)

https://github.com/llvm/llvm-project/pull/73119
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to