gdb: constify target_stack::is_pushed
authorSimon Marchi <simon.marchi@polymtl.ca>
Thu, 29 Sep 2022 20:39:13 +0000 (16:39 -0400)
committerSimon Marchi <simon.marchi@polymtl.ca>
Thu, 29 Sep 2022 20:39:13 +0000 (16:39 -0400)
The target_ops parameters here can be made const.

Change-Id: Ibc18b17d6b21d06145251a03e68aca90538117d6

gdb/inferior.h
gdb/target.h

index 017800165b4b39bdf6dd47bc43cc69a4e535b449..bb3aec1e8f80bfbf998b7a417472dd0d7edfe952 100644 (file)
@@ -369,7 +369,7 @@ public:
   int unpush_target (struct target_ops *t);
 
   /* Returns true if T is pushed in this inferior's target stack.  */
-  bool target_is_pushed (target_ops *t)
+  bool target_is_pushed (const target_ops *t)
   { return m_target_stack.is_pushed (t); }
 
   /* Find the target beneath T in this inferior's target stack.  */
index 0b784278c4f82f2e91ab9d09dd43b389cefde77e..8e13ada07b6a025e63d2158ddd829e55bc367d46 100644 (file)
@@ -1385,7 +1385,7 @@ public:
   bool unpush (target_ops *t);
 
   /* Returns true if T is pushed on the target stack.  */
-  bool is_pushed (target_ops *t) const
+  bool is_pushed (const target_ops *t) const
   { return at (t->stratum ()) == t; }
 
   /* Return the target at STRATUM.  */