Commit afe86a9e authored by Peter Eisentraut's avatar Peter Eisentraut

Fix obsolescent C declaration syntax

gcc -Wextra/-Wold-style-declaration thinks that "inline" should go
before the function return type.
parent a5985a96
...@@ -327,7 +327,7 @@ non_negative(float val) ...@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment