diff mbox series

[pushed] analyzer: fix -Wunused-parameter warnings

Message ID 20230907224930.883908-1-dmalcolm@redhat.com
State New
Headers show
Series [pushed] analyzer: fix -Wunused-parameter warnings | expand

Commit Message

David Malcolm Sept. 7, 2023, 10:49 p.m. UTC
Successfully bootstrapped & regrtested on x86_64-pc-linux-gnu.
Pushed to trunk as r14-3793-g18f1f79ec5b1f1.

gcc/analyzer/ChangeLog:
	* region-model.h: fix -Wunused-parameter warnings
---
 gcc/analyzer/region-model.h | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
diff mbox series

Patch

diff --git a/gcc/analyzer/region-model.h b/gcc/analyzer/region-model.h
index 625f68805361..1ac3a32b7a41 100644
--- a/gcc/analyzer/region-model.h
+++ b/gcc/analyzer/region-model.h
@@ -793,8 +793,8 @@  class region_model_context
 class noop_region_model_context : public region_model_context
 {
 public:
-  bool warn (std::unique_ptr<pending_diagnostic> d,
-	     const stmt_finder *custom_finder) override { return false; }
+  bool warn (std::unique_ptr<pending_diagnostic>,
+	     const stmt_finder *) override { return false; }
   void add_note (std::unique_ptr<pending_note>) override;
   void add_event (std::unique_ptr<checker_event>) override;
   void on_svalue_leak (const svalue *) override {}
@@ -1200,7 +1200,7 @@  class test_region_model_context : public noop_region_model_context
 {
 public:
   bool warn (std::unique_ptr<pending_diagnostic> d,
-	     const stmt_finder *custom_finder) final override
+	     const stmt_finder *) final override
   {
     m_diagnostics.safe_push (d.release ());
     return true;