diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2017-10-31 14:29:25 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2017-10-31 14:29:25 -0400 |
commit | 09b847f3a85ca29ec20ada375fe67843755b6413 (patch) | |
tree | de32a9944c0abc854801db2ddf635da4a7b819ae | |
parent | 0bb6961f18b8e832d88b490d421ca56cea16c45b (diff) | |
download | gdb-09b847f3a85ca29ec20ada375fe67843755b6413.zip gdb-09b847f3a85ca29ec20ada375fe67843755b6413.tar.gz gdb-09b847f3a85ca29ec20ada375fe67843755b6413.tar.bz2 |
tracepoint: Remove unnecessary const_cast
We are passing a const char * to a const char * parameter, the
const_cast is not necessary.
gdb/ChangeLog:
* tracepoint.c (tfind_command): Remove const_cast.
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/tracepoint.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a72cc74..eec03e4 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2017-10-31 Simon Marchi <simon.marchi@ericsson.com> + + * tracepoint.c (tfind_command): Remove const_cast. + 2017-10-30 Mike Gulick <mgulick@mathworks.com> * Makefile.in (HFILES_NO_SRCDIR): Remove reference to gdb.h. diff --git a/gdb/tracepoint.c b/gdb/tracepoint.c index fdc3b38..78f4c86 100644 --- a/gdb/tracepoint.c +++ b/gdb/tracepoint.c @@ -2319,7 +2319,7 @@ tfind_command_1 (const char *args, int from_tty) static void tfind_command (const char *args, int from_tty) { - tfind_command_1 (const_cast<char *> (args), from_tty); + tfind_command_1 (args, from_tty); } /* tfind end */ |