summaryrefslogtreecommitdiff
path: root/gdb/ChangeLog
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@polymtl.ca>2017-12-05 16:30:24 -0500
committerSimon Marchi <simon.marchi@ericsson.com>2017-12-05 16:30:24 -0500
commitf65ff9f9a4add415e5ae332a094b2134c1625517 (patch)
tree79a62aa6683804272c88cec43b87cef4e4f439b6 /gdb/ChangeLog
parent3eea796c5daeb7b60531fc3d707470fa91a86e11 (diff)
downloadbinutils-gdb-f65ff9f9a4add415e5ae332a094b2134c1625517.tar.gz
Make tdesc_feature::name an std::string
... so we don't have to manually free it in ~tdesc_feature. gdb/ChangeLog: * target-descriptions.c (tdesc_feature) <name>: Change type to std::string. <~tdesc_feature>: Don't manually free name. <operator==>: Adjust. (tdesc_find_feature): Adjust. (tdesc_feature_name): Adjust. (class print_c_tdesc) <visit_pre>: Adjust. (class print_c_feature) <visit_pre>: Adjust.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r--gdb/ChangeLog11
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog
index 36aa1146356..e3c1cbfb286 100644
--- a/gdb/ChangeLog
+++ b/gdb/ChangeLog
@@ -1,5 +1,16 @@
2017-12-05 Simon Marchi <simon.marchi@polymtl.ca>
+ * target-descriptions.c (tdesc_feature) <name>: Change type to
+ std::string.
+ <~tdesc_feature>: Don't manually free name.
+ <operator==>: Adjust.
+ (tdesc_find_feature): Adjust.
+ (tdesc_feature_name): Adjust.
+ (class print_c_tdesc) <visit_pre>: Adjust.
+ (class print_c_feature) <visit_pre>: Adjust.
+
+2017-12-05 Simon Marchi <simon.marchi@polymtl.ca>
+
* target-descriptions.c (tdesc_feature_p): Remove typedef.
(DEF_VEC_P (tdesc_feature_p)): Remove.
(struct target_desc) <features>: Change type to std::vector.