summaryrefslogtreecommitdiffstats
path: root/Vector.h
diff options
context:
space:
mode:
authorHisham Muhammad <hisham@gobolinux.org>2007-08-10 05:59:36 +0000
committerHisham Muhammad <hisham@gobolinux.org>2007-08-10 05:59:36 +0000
commite685bdeea080160684faaf17169faac0e614dfc7 (patch)
treee913033ecda16bbee3fbc3f659e61e59806b1f1f /Vector.h
parent4c51ad0e3549a12215c98e8fa011557fc6889b65 (diff)
Fix GCC 4.3 issues: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=416852
Diffstat (limited to 'Vector.h')
-rw-r--r--Vector.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Vector.h b/Vector.h
index 3ecfd270..209da0e5 100644
--- a/Vector.h
+++ b/Vector.h
@@ -61,15 +61,15 @@ void Vector_moveDown(Vector* this, int index);
void Vector_set(Vector* this, int index, void* data_);
-inline Object* Vector_get(Vector* this, int index);
+extern Object* Vector_get(Vector* this, int index);
-inline int Vector_size(Vector* this);
+extern int Vector_size(Vector* this);
void Vector_merge(Vector* this, Vector* v2);
void Vector_add(Vector* this, void* data_);
-inline int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
+extern int Vector_indexOf(Vector* this, void* search_, Object_Compare compare);
void Vector_foreach(Vector* this, Vector_procedure f);

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