about summary refs log tree commit diff stats
path: root/wrapperhelper/src/vector.h
diff options
context:
space:
mode:
authorrajdakin <rajdakin@gmail.com>2024-09-07 20:53:51 +0200
committerGitHub <noreply@github.com>2024-09-07 20:53:51 +0200
commitf30d75ae5dba339bfc95229894b22fd73e3fdc14 (patch)
tree5cd75da181f43a7aaf29cab121069d9dba85aa2d /wrapperhelper/src/vector.h
parente087e7782ca9b2ce6c8ec99706a352b1c6ca12bc (diff)
downloadbox64-f30d75ae5dba339bfc95229894b22fd73e3fdc14.tar.gz
box64-f30d75ae5dba339bfc95229894b22fd73e3fdc14.zip
[WRAPPERHELPER] General improvements (#1804)
* [WRAPPERHELPER] Automatic headers detection, various bug fixes, added some cast support

* [WRAPPERHELPER] Keep comments untouched
Diffstat (limited to 'wrapperhelper/src/vector.h')
-rw-r--r--wrapperhelper/src/vector.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/wrapperhelper/src/vector.h b/wrapperhelper/src/vector.h
index 70319cc2..6e0c124a 100644
--- a/wrapperhelper/src/vector.h
+++ b/wrapperhelper/src/vector.h
@@ -26,7 +26,7 @@
  * vector_new --------------- Creates a new vector. Takes the name.
  * vector_new_cap ----------- Creates a new vector with a given capacity. Takes the name and the capacity.
  * vector_reserve ----------- Ensures a vector has at least a given capacity. Takes the name, the vector and the capacity. May not reduce the vector capacity.
- * vector_trim -------------- Ensures a vector has a capacity equal to its size. Takes the name, the vector. May reduce the vector capacity.
+ * vector_trim -------------- Ensures a vector has a capacity equal to its size. Takes the name and the vector. May reduce the vector capacity.
  * vector_del --------------- Frees a vector. Takes the name and the vector. Destructs the content of the vector.
  * vector_steal ------------- Frees a vector and returns the content. Takes the name and the vector. May reduce the vector capacity.
  * vector_del_freed --------- Frees a vector without freeing the content. Takes the name and the vector. Does not interact with the content of the vector.