dynamic-array: fix documentation of lttng_dynamic_pointer_array_get_pointer
[lttng-tools.git] / src / common / dynamic-array.h
index e97b51d5d0d1d0ff5eebf9e7cddd1fedfa9112f2..483db363122ebbc5a6339cd5ec144a2181922066 100644 (file)
@@ -117,8 +117,7 @@ size_t lttng_dynamic_pointer_array_get_count(
 }
 
 /*
- * Returns a pointer to the element. Mutating operations on the array invalidate
- * the returned pointer.
+ * Returns the pointer at index `index`.
  */
 static inline
 void *lttng_dynamic_pointer_array_get_pointer(
@@ -146,12 +145,9 @@ int lttng_dynamic_pointer_array_add_pointer(
  * count is decreased by one and the following pointers are shifted to
  * take the place of the removed pointer (if applicable).
  */
-static inline
+LTTNG_HIDDEN
 int lttng_dynamic_pointer_array_remove_pointer(
-               struct lttng_dynamic_pointer_array *array, size_t index)
-{
-       return lttng_dynamic_array_remove_element(&array->array, index);
-}
+               struct lttng_dynamic_pointer_array *array, size_t index);
 
 /* Release any memory used by the dynamic array. */
 LTTNG_HIDDEN
This page took 0.023013 seconds and 4 git commands to generate.