fixes doxygen doc feature/array

Fri, 05 Jul 2019 15:07:43 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 05 Jul 2019 15:07:43 +0200
branch
feature/array
changeset 339
ae368664625f
parent 338
0878f83348a0
child 340
8acf182f6424

fixes doxygen doc

src/ucx/array.h file | annotate | diff | comparison | revisions
     1.1 --- a/src/ucx/array.h	Fri Jul 05 15:02:04 2019 +0200
     1.2 +++ b/src/ucx/array.h	Fri Jul 05 15:07:43 2019 +0200
     1.3 @@ -213,7 +213,7 @@
     1.4   * @return the requested element
     1.5   * @see ucx_array_at()
     1.6   */
     1.7 -#define ucx_array_at_typed(type, arr, i) (((type*)((arr).data))[i])
     1.8 +#define ucx_array_at_typed(type, array, index) (((type*)((array).data))[index])
     1.9  
    1.10  /**
    1.11   * Shorthand for ucx_array_at_typed().
    1.12 @@ -294,7 +294,7 @@
    1.13   * 
    1.14   * This function uses additional memory for exactly one element.
    1.15   * 
    1.16 - * @param the array to sort
    1.17 + * @param array the array to sort
    1.18   * @param cmpfnc the function that shall be used to compare the element data
    1.19   * @param data additional data for the cmp_func()
    1.20   */

mercurial