diff options
author | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-06 00:35:33 +0000 |
---|---|---|
committer | nobu <nobu@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2016-08-06 00:35:33 +0000 |
commit | a62dcd947c0bc52868beb3ddb1c570ac2ea46636 (patch) | |
tree | 49671e596320587499a80537b2ae77eb0b5c5745 | |
parent | b46a8a54769b8b19caff07fc4890f56b7bc977a3 (diff) | |
download | bundler-a62dcd947c0bc52868beb3ddb1c570ac2ea46636.tar.gz |
id_table.h: dummy sentinel
* id_table.h (rb_id_table_iterator_result): add dummy sentinel
member because C standard prohibits a trailing comma.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55821 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | id_table.c | 1 | ||||
-rw-r--r-- | id_table.h | 1 |
3 files changed, 7 insertions, 0 deletions
@@ -1,3 +1,8 @@ +Sat Aug 6 09:35:30 2016 Nobuyoshi Nakada <nobu@ruby-lang.org> + + * id_table.h (rb_id_table_iterator_result): add dummy sentinel + member because C standard prohibits a trailing comma. + Sat Aug 6 00:39:44 2016 Nobuyoshi Nakada <nobu@ruby-lang.org> * hash.c (env_enc_str_new): make string for an environment diff --git a/id_table.c b/id_table.c index b8111aa86c..1d1d684745 100644 --- a/id_table.c +++ b/id_table.c @@ -720,6 +720,7 @@ list_id_table_delete(struct list_id_table *tbl, ID id) #define FOREACH_LAST() do { \ switch (ret) { \ + case ID_TABLE_ITERATOR_RESULT_END: \ case ID_TABLE_CONTINUE: \ case ID_TABLE_STOP: \ break; \ diff --git a/id_table.h b/id_table.h index 4b4eb6fd70..b10b4ac164 100644 --- a/id_table.h +++ b/id_table.h @@ -9,6 +9,7 @@ enum rb_id_table_iterator_result { ID_TABLE_CONTINUE = ST_CONTINUE, ID_TABLE_STOP = ST_STOP, ID_TABLE_DELETE = ST_DELETE, + ID_TABLE_ITERATOR_RESULT_END }; struct rb_id_table *rb_id_table_create(size_t size); |