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] Remove DEF_VEC_I (int)


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

commit 7468702dcb37013edbbbc62e247e23c4b2632379
Author: Simon Marchi <simon.marchi@polymtl.ca>
Date:   Fri Nov 17 13:02:25 2017 -0500

    Remove DEF_VEC_I (int)
    
    Now that all its usages are removed, we can get rid of DEF_VEC_I (int).
    
    gdb/ChangeLog:
    
    	* common/gdb_vecs.h (DEF_VEC_I (int)): Remove.

Diff:
---
 gdb/ChangeLog         | 4 ++++
 gdb/common/gdb_vecs.h | 2 --
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 46de331..7d58046 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,9 @@
 2017-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
 
+	* common/gdb_vecs.h (DEF_VEC_I (int)): Remove.
+
+2017-11-17  Simon Marchi  <simon.marchi@polymtl.ca>
+
 	* common/filestuff.c: Include <algorithm>.
 	(open_fds): Change type to std::vector<int>.
 	(do_mark_open_fd): Adjust.
diff --git a/gdb/common/gdb_vecs.h b/gdb/common/gdb_vecs.h
index b5fccbc..589b3d5 100644
--- a/gdb/common/gdb_vecs.h
+++ b/gdb/common/gdb_vecs.h
@@ -29,8 +29,6 @@ DEF_VEC_P (char_ptr);
 
 DEF_VEC_P (const_char_ptr);
 
-DEF_VEC_I (int);
-
 extern void free_char_ptr_vec (VEC (char_ptr) *char_ptr_vec);
 
 extern struct cleanup *


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