This is the mail archive of the gdb-patches@sourceware.org mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[pushed] 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.
---
 gdb/ChangeLog    | 4 ++++
 gdb/tracepoint.c | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

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 */
-- 
2.7.4


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]