From 01044cbf1f5dac0dbea344c9e787eb730ba61260 Mon Sep 17 00:00:00 2001 From: Timothy Flynn Date: Thu, 13 Feb 2025 07:12:57 -0500 Subject: [PATCH] LibIPC: Restore `inline` attribute on IPC constexpr booleans These were mistakenly removed in commit d41e577ba. --- Libraries/LibIPC/Concepts.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/Libraries/LibIPC/Concepts.h b/Libraries/LibIPC/Concepts.h index 3fec999d5f1..c11d8f9f84c 100644 --- a/Libraries/LibIPC/Concepts.h +++ b/Libraries/LibIPC/Concepts.h @@ -29,24 +29,24 @@ namespace Detail { // Cannot use SpecializationOf with these templates because they have non-type parameters. See https://www.open-std.org/jtc1/sc22/wg21/docs/papers/2022/p1985r3.pdf template -constexpr bool IsArray = false; +constexpr inline bool IsArray = false; template -constexpr bool IsArray> = true; +constexpr inline bool IsArray> = true; template -constexpr bool IsVector = false; +constexpr inline bool IsVector = false; template -constexpr bool IsVector> = true; +constexpr inline bool IsVector> = true; template -constexpr bool IsHashMap = false; +constexpr inline bool IsHashMap = false; template -constexpr bool IsHashMap> = true; +constexpr inline bool IsHashMap> = true; template -constexpr bool IsSharedSingleProducerCircularQueue = false; +constexpr inline bool IsSharedSingleProducerCircularQueue = false; template -constexpr bool IsSharedSingleProducerCircularQueue> = true; +constexpr inline bool IsSharedSingleProducerCircularQueue> = true; }