From: Simon Marchi Date: Thu, 29 Sep 2022 20:39:13 +0000 (-0400) Subject: gdb: constify target_stack::is_pushed X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=31282a849107d95d3cfe115ba160f976dd99844c;p=binutils-gdb.git gdb: constify target_stack::is_pushed The target_ops parameters here can be made const. Change-Id: Ibc18b17d6b21d06145251a03e68aca90538117d6 --- diff --git a/gdb/inferior.h b/gdb/inferior.h index 017800165b4..bb3aec1e8f8 100644 --- a/gdb/inferior.h +++ b/gdb/inferior.h @@ -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. */ diff --git a/gdb/target.h b/gdb/target.h index 0b784278c4f..8e13ada07b6 100644 --- a/gdb/target.h +++ b/gdb/target.h @@ -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. */