From 732b2acf35be4297cea37ba214c7faf0115d1991 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 12 Mar 2019 11:54:38 +0100 Subject: [PATCH] lib/upnp: remove redundant `inline` keywords from `constexpr` functions --- src/lib/upnp/Action.hxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/upnp/Action.hxx b/src/lib/upnp/Action.hxx index 49ed75198..d2c2c01c9 100644 --- a/src/lib/upnp/Action.hxx +++ b/src/lib/upnp/Action.hxx @@ -24,14 +24,14 @@ #include -static inline constexpr unsigned +static constexpr unsigned CountNameValuePairs() noexcept { return 0; } template -static inline constexpr unsigned +static constexpr unsigned CountNameValuePairs(gcc_unused const char *name, gcc_unused const char *value, Args... args) noexcept {