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; }