Fix obsolescent C declaration syntax

gcc -Wextra/-Wold-style-declaration thinks that "inline" should go
before the function return type.
This commit is contained in:
Peter Eisentraut 2012-05-12 12:52:02 +03:00
parent a5985a96a8
commit afe86a9e73

View file

@ -327,7 +327,7 @@ non_negative(float val)
/* /*
* Consider replacement of currently selected split with the better one. * Consider replacement of currently selected split with the better one.
*/ */
static void inline static inline void
g_box_consider_split(ConsiderSplitContext *context, int dimNum, g_box_consider_split(ConsiderSplitContext *context, int dimNum,
double rightLower, int minLeftCount, double rightLower, int minLeftCount,
double leftUpper, int maxLeftCount) double leftUpper, int maxLeftCount)