This is the mail archive of the gdb-cvs@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]

[binutils-gdb] tracepoint: Remove unnecessary const_cast


https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=09b847f3a85ca29ec20ada375fe67843755b6413

commit 09b847f3a85ca29ec20ada375fe67843755b6413
Author: Simon Marchi <simon.marchi@ericsson.com>
Date:   Tue Oct 31 14:29:25 2017 -0400

    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.

Diff:
---
 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 */


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