summaryrefslogtreecommitdiffstats
path: root/Vector.h
diff options
context:
space:
mode:
Diffstat (limited to 'Vector.h')
-rw-r--r--Vector.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/Vector.h b/Vector.h
index 0ebea031..d2b74ce7 100644
--- a/Vector.h
+++ b/Vector.h
@@ -22,8 +22,6 @@ in the source distribution for its full text.
#define DEFAULT_SIZE -1
#endif
-typedef void(*Vector_procedure)(void*);
-
typedef struct Vector_ {
Object **array;
Object_Compare compare;
@@ -73,8 +71,4 @@ void Vector_add(Vector* this, void* data_);
extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
-/*
-
-*/
-
#endif