From d1d3123c7bb7149595ec718e6f188565fa5a2a26 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Thu, 29 Sep 2022 20:14:41 -0400 Subject: [PATCH] gdb: constify inferior::target_is_pushed Change-Id: Ia4143b9c63cb76e2c824ba773c66f5c5cd94b2aa --- gdb/inferior.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdb/inferior.h b/gdb/inferior.h index bb3aec1e8f8..27765304ece 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 (const target_ops *t) + bool target_is_pushed (const target_ops *t) const { return m_target_stack.is_pushed (t); } /* Find the target beneath T in this inferior's target stack. */ -- 2.30.2