From 4915bfdcfb271cab6ca7534916c42e98cf22f953 Mon Sep 17 00:00:00 2001 From: Marco Barisione Date: Wed, 19 May 2021 13:58:40 +0100 Subject: gdb: Add an overloaded ui_out::text accepting a const std::string & gdb/ChangeLog: * ui-out.h (class ui_out): Add ui_out::text accepting a constant reference to a std::string. Fix all callers using std::string::c_str. * ui-out.c (ui_out::text): Ditto. --- gdb/ada-lang.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gdb/ada-lang.c') diff --git a/gdb/ada-lang.c b/gdb/ada-lang.c index 2a257c2..1b50676 100644 --- a/gdb/ada-lang.c +++ b/gdb/ada-lang.c @@ -11865,7 +11865,7 @@ print_mention_exception (struct breakpoint *b) { std::string info = string_printf (_("`%s' Ada exception"), c->excep_string.c_str ()); - uiout->text (info.c_str ()); + uiout->text (info); } else uiout->text (_("all Ada exceptions")); @@ -11881,7 +11881,7 @@ print_mention_exception (struct breakpoint *b) std::string info = string_printf (_("`%s' Ada exception handlers"), c->excep_string.c_str ()); - uiout->text (info.c_str ()); + uiout->text (info); } else uiout->text (_("all Ada exceptions handlers")); -- cgit v1.1