tracepoint: Remove unnecessary const_cast
authorSimon Marchi <simon.marchi@ericsson.com>
Tue, 31 Oct 2017 18:29:25 +0000 (14:29 -0400)
committerSimon Marchi <simon.marchi@ericsson.com>
Tue, 31 Oct 2017 18:29:25 +0000 (14:29 -0400)
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.

gdb/ChangeLog
gdb/tracepoint.c

index a72cc742bb630ac078943b9d8018dcbf7dc0cd50..eec03e443cddd728ade4ba7086fcba8028f59486 100644 (file)
@@ -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.
index fdc3b38490b188bb650a10d13ce0861bd1ab16d4..78f4c8612631b3e48863e8ea26b4deac02414a67 100644 (file)
@@ -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 */