From 67d9172885be49185d76f1a6a96ddb506f05f6b5 Mon Sep 17 00:00:00 2001 From: Ben Wiederhake Date: Mon, 15 May 2023 11:17:31 +0200 Subject: [PATCH] LibIPC: Fix HashMap detection in case of non-trivial traits --- Userland/Libraries/LibIPC/Concepts.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/Userland/Libraries/LibIPC/Concepts.h b/Userland/Libraries/LibIPC/Concepts.h index 99746e00c8..5afab8c923 100644 --- a/Userland/Libraries/LibIPC/Concepts.h +++ b/Userland/Libraries/LibIPC/Concepts.h @@ -27,10 +27,8 @@ namespace Detail { template constexpr inline bool IsHashMap = false; -template -constexpr inline bool IsHashMap> = true; -template -constexpr inline bool IsHashMap> = true; +template +constexpr inline bool IsHashMap> = true; template constexpr inline bool IsOptional = false;