From: alegrand Date: Wed, 3 Nov 2004 22:29:29 +0000 (+0000) Subject: Update or removal of needless comments. X-Git-Tag: v3.3~4870 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8f9ddec9995bd05c627517bbb7fe62451788d1e4 Update or removal of needless comments. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@480 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/xbt/dict.c b/src/xbt/dict.c index c622e78f58..865934e3e0 100644 --- a/src/xbt/dict.c +++ b/src/xbt/dict.c @@ -60,7 +60,6 @@ xbt_dict_free(xbt_dict_t *dict) { * @p_dict: the container * @key: the key to set the new data * @data: the data to add in the dict - * @Returns: a gras_error * * set the @data in the structure under the @key, which can be any kind * of data, as long as its length is provided in @key_len. @@ -84,7 +83,6 @@ xbt_dict_set_ext(xbt_dict_t dict, * @head: the head of the dict * @key: the key to set the new data * @data: the data to add in the dict - * @Returns: a gras_error * * set the @data in the structure under the @key, which is a * null terminated string. @@ -106,7 +104,7 @@ xbt_dict_set(xbt_dict_t dict, * @dict: the dealer of data * @key: the key to find data * @data: the data that we are looking for - * @Returns: gras_error + * @Returns: xbt_error * * Search the given @key. mismatch_error when not found. */ @@ -127,7 +125,7 @@ xbt_dict_get_ext(xbt_dict_t dict, * @dict: the dealer of data * @key: the key to find data * @data: the data that we are looking for - * @Returns: gras_error + * @Returns: xbt_error * * Search the given @key. mismatch_error when not found. */ diff --git a/src/xbt/dict_elm.c b/src/xbt/dict_elm.c index 20458b4318..99423b575a 100644 --- a/src/xbt/dict_elm.c +++ b/src/xbt/dict_elm.c @@ -395,7 +395,6 @@ _xbt_dictelm_change_value(s_xbt_dictelm_t *p_elm, * @key: the key to set the new data * @offset: offset on key. * @data: the data to add in the dict - * @Returns: a gras_error * * set the @data in the structure under the @key. The @key is destroyed * in the process. Think to strdup it before. @@ -539,7 +538,6 @@ _xbt_dictelm_set_rec(s_xbt_dictelm_t *p_head, * @head: the head of the dict * @key: the key to set the new data * @data: the data to add in the dict - * @Returns: a gras_error * * set the @data in the structure under the @key, which can be any kind * of data, as long as its length is provided in @key_len. @@ -581,7 +579,6 @@ xbt_dictelm_set_ext(s_xbt_dictelm_t **pp_head, * @head: the head of the dict * @key: the key to set the new data * @data: the data to add in the dict - * @Returns: a gras_error * * set the @data in the structure under the @key, which is a * null terminated string. @@ -602,7 +599,7 @@ xbt_dictelm_set(s_xbt_dictelm_t **pp_head, * @key: the key to find data * @offset: offset on the key * @data: the data that we are looking for - * @Returns: gras_error + * @Returns: xbt_error * * Search the given @key. mismatch_error when not found. */ @@ -677,7 +674,7 @@ _xbt_dictelm_get_rec(s_xbt_dictelm_t *p_head, * @head: the head of the dict * @key: the key to find data * @data: the data that we are looking for - * @Returns: gras_error + * @Returns: xbt_error * * Search the given @key. mismatch_error when not found. */ @@ -700,7 +697,7 @@ xbt_dictelm_get_ext(s_xbt_dictelm_t *p_head, * @head: the head of the dict * @key: the key to find data * @data: the data that we are looking for - * @Returns: gras_error + * @Returns: xbt_error * * Search the given @key. mismatch_error when not found. */