pgsql: Remove useless inline marker. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Remove useless inline marker.
Date
Msg-id E1nBObk-0006OJ-Uv@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Remove useless inline marker.

Putting "inline" on a function that's not used anywhere in its
own file is useless unless the linker is doing global optimization,
a method we don't generally enable.  Moreover, it draws warnings
from some buildfarm members (curculio at least).

Looks like this was sloppiness in cc8b25712, which moved the
function from somewhere else where the inline marker was
more appropriate.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/62e28097cebf99533bd0badd6f3c6ce9db9f1497

Modified Files
--------------
src/backend/commands/vacuum.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Doc: add cross-references between array_to_string and string_to_
Next
From: Tomas Vondra
Date:
Subject: pgsql: Check syscache result in AlterStatistics