lib/upnp: remove redundant inline keywords from constexpr functions

This commit is contained in:
Max Kellermann 2019-03-12 11:54:38 +01:00
parent 16906cdcbe
commit 732b2acf35

View File

@ -24,14 +24,14 @@
#include <upnptools.h>
static inline constexpr unsigned
static constexpr unsigned
CountNameValuePairs() noexcept
{
return 0;
}
template<typename... Args>
static inline constexpr unsigned
static constexpr unsigned
CountNameValuePairs(gcc_unused const char *name, gcc_unused const char *value,
Args... args) noexcept
{