Skip to content
Snippets Groups Projects
Commit afe86a9e authored by Peter Eisentraut's avatar Peter Eisentraut
Browse files

Fix obsolescent C declaration syntax

gcc -Wextra/-Wold-style-declaration thinks that "inline" should go
before the function return type.
parent a5985a96
No related branches found
No related tags found
No related merge requests found
...@@ -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)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment