summaryrefslogtreecommitdiffstats
path: root/Vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'Vector.h')
-rw-r--r--Vector.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/Vector.h b/Vector.h
index 24e2976c..dc3361a2 100644
--- a/Vector.h
+++ b/Vector.h
@@ -23,12 +23,12 @@ typedef struct Vector_ {
int arraySize;
int growthRate;
int items;
- char* vectorType;
+ char* type;
bool owner;
} Vector;
-Vector* Vector_new(char* vectorType_, bool owner, int size, Object_Compare compare);
+Vector* Vector_new(char* type, bool owner, int size, Object_Compare compare);
void Vector_delete(Vector* this);