diff options
author | Marco Barisione <mbarisione@undo.io> | 2021-05-19 13:58:40 +0100 |
---|---|---|
committer | Marco Barisione <mbarisione@undo.io> | 2021-05-19 13:58:40 +0100 |
commit | 4915bfdcfb271cab6ca7534916c42e98cf22f953 (patch) | |
tree | b84c65da6b8f840d5f6c75711a9df36cc23d9496 /gdb | |
parent | d9211df246b74aa4f1ba86f04933eca86862a352 (diff) | |
download | gdb-4915bfdcfb271cab6ca7534916c42e98cf22f953.zip gdb-4915bfdcfb271cab6ca7534916c42e98cf22f953.tar.gz gdb-4915bfdcfb271cab6ca7534916c42e98cf22f953.tar.bz2 |
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.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ada-lang.c | 4 | ||||
-rw-r--r-- | gdb/cli/cli-setshow.c | 2 | ||||
-rw-r--r-- | gdb/source.c | 2 | ||||
-rw-r--r-- | gdb/thread.c | 2 | ||||
-rw-r--r-- | gdb/ui-out.c | 6 | ||||
-rw-r--r-- | gdb/ui-out.h | 1 |
6 files changed, 12 insertions, 5 deletions
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")); diff --git a/gdb/cli/cli-setshow.c b/gdb/cli/cli-setshow.c index 82008ca..f6a594d 100644 --- a/gdb/cli/cli-setshow.c +++ b/gdb/cli/cli-setshow.c @@ -760,7 +760,7 @@ cmd_show_list (struct cmd_list_element *list, int from_tty) std::string prefixname = list->prefix->prefixname (); prefixname = (!list->prefix->is_prefix () ? "" : strstr (prefixname.c_str (), "show ") + 5); - uiout->text (prefixname.c_str ()); + uiout->text (prefixname); } uiout->field_string ("name", list->name); uiout->text (": "); diff --git a/gdb/source.c b/gdb/source.c index b6dab6e..54cb45f 100644 --- a/gdb/source.c +++ b/gdb/source.c @@ -1394,7 +1394,7 @@ print_source_lines_base (struct symtab *s, int line, int stopline, if (iter > start) { std::string text (start, iter); - uiout->text (text.c_str ()); + uiout->text (text); } if (*iter == '\r') { diff --git a/gdb/thread.c b/gdb/thread.c index 3cd588e..87b6cbf 100644 --- a/gdb/thread.c +++ b/gdb/thread.c @@ -1977,7 +1977,7 @@ print_selected_thread_frame (struct ui_out *uiout, uiout->text ("[Switching to thread "); uiout->field_string ("new-thread-id", print_thread_id (tp)); uiout->text (" ("); - uiout->text (target_pid_to_str (inferior_ptid).c_str ()); + uiout->text (target_pid_to_str (inferior_ptid)); uiout->text (")]"); } } diff --git a/gdb/ui-out.c b/gdb/ui-out.c index d67dae4..56251c9 100644 --- a/gdb/ui-out.c +++ b/gdb/ui-out.c @@ -582,6 +582,12 @@ ui_out::text (const char *string) } void +ui_out::text (const std::string &string) +{ + text (string.c_str ()); +} + +void ui_out::call_do_message (const ui_file_style &style, const char *format, ...) { diff --git a/gdb/ui-out.h b/gdb/ui-out.h index f14be47..a06477d 100644 --- a/gdb/ui-out.h +++ b/gdb/ui-out.h @@ -203,6 +203,7 @@ class ui_out void spaces (int numspaces); void text (const char *string); + void text (const std::string &string); /* Output a printf-style formatted string. In addition to the usual printf format specs, this supports a few GDB-specific |