summaryrefslogtreecommitdiffstats
path: root/Vector.c
diff options
context:
space:
mode:
authorHugo Musso Gualandi <hugo_musso_gualandi@hotmail.com>2020-09-12 18:25:25 -0300
committerHugo Musso Gualandi <hugo_musso_gualandi@hotmail.com>2020-09-12 19:20:44 -0300
commit9207401f9711ba026a70d7dd47347d7eab168b3f (patch)
tree959ae417880dda426e3b1bfea904edc6a90fac0c /Vector.c
parentcd55cfd6d263a89bbaf401481ea6bd6a5dd8f110 (diff)
Clean up some code duplication in the header files
PR htop-dev/htop#70 got rid of the infrastructure for generating header files, but it left behind some code duplication. Some of cases are things that belong in the header file and don't need to be repeated in the C file. Other cases are things that belong in the C file and don't need to be in the header file. In this commit I tried to fix all of these that I could find. When given a choice I preferred keeping things out of the header file, unless they were being used by someone else.
Diffstat (limited to 'Vector.c')
-rw-r--r--Vector.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vector.c b/Vector.c
index e7776ea3..e51fd7b1 100644
--- a/Vector.c
+++ b/Vector.c
@@ -261,7 +261,7 @@ inline Object* Vector_get(Vector* this, int idx) {
#else
-#define Vector_get(v_, idx_) ((v_)->array[idx_])
+// In this case, Vector_get is defined as a macro in vector.h
#endif
@@ -274,7 +274,7 @@ inline int Vector_size(Vector* this) {
#else
-#define Vector_size(v_) ((v_)->items)
+// In this case, Vector_size is defined as a macro in vector.h
#endif

© 2014-2024 Faster IT GmbH | imprint | privacy policy