# HG changeset patch # User David A. Holland # Date 1377384605 14400 # Node ID c440247cbd69cc4c55730267360b26911ba7ca23 # Parent 8772a06548766578bca07e631fe30b6e1f581ab8 fix compile bug in array.h (does not currently affect tradcpp) diff -r 8772a0654876 -r c440247cbd69 array.h --- a/array.h Sat Jul 13 14:48:38 2013 -0400 +++ b/array.h Sat Aug 24 18:50:05 2013 -0400 @@ -253,7 +253,7 @@ #define DEFARRAY(T, INLINE) DEFARRAY_BYTYPE(T##array, struct T, INLINE) #define DESTROYALL_ARRAY(T, INLINE) \ - void T##array_destroyall(struct T##array *arr); \ + INLINE void T##array_destroyall(struct T##array *arr); \ \ INLINE void \ T##array_destroyall(struct T##array *arr) \