From 16aebc62f2a5e9b5d3252e199e9465a784702036 Mon Sep 17 00:00:00 2001
From: barracuda156 <vital.had@gmail.com>
Date: Sat, 15 Jul 2023 03:24:15 +0800
Subject: [PATCH] Fix for sfinae for Darwin ppc32

---
 c++/src/kj/common.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git c++/src/kj/common.h c++/src/kj/common.h
index 2ed7aea7..483528a4 100644
--- src/kj/common.h
+++ src/kj/common.h
@@ -618,7 +618,7 @@ template <> constexpr bool isIntegral<unsigned long long>() { return true; }
 template <typename T>
 struct CanConvert_ {
   static int sfinae(T);
-  static bool sfinae(...);
+  static char sfinae(...);
 };
 
 template <typename T, typename U>
