From a67a9c99801741b36a824ea4d9768c3795b282b3 Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Tue, 12 Mar 2019 11:54:44 +0100 Subject: [PATCH] tag/Pool: remove redundant `inline` keywords from `constexpr` functions --- src/tag/Pool.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tag/Pool.cxx b/src/tag/Pool.cxx index 95172b46a..831a661b6 100644 --- a/src/tag/Pool.cxx +++ b/src/tag/Pool.cxx @@ -90,7 +90,7 @@ calc_hash(TagType type, const char *p) noexcept return hash ^ type; } -static inline constexpr TagPoolSlot * +static constexpr TagPoolSlot * tag_item_to_slot(TagItem *item) noexcept { return &ContainerCast(*item, &TagPoolSlot::item);