mirror of
https://github.com/postgres/postgres.git
synced 2026-05-30 20:44:54 -04:00
4c8aa8b5ae
This test used to just define an unused static inline function and check whether that causes a warning. But newer clang versions warn about unused static inline functions when defined inside a .c file, but not when defined in an included header, which is the case we care about. Change the test to cope. Andres Freund