From 219bf3406c65bdb276c33611c16399e9551404f6 Mon Sep 17 00:00:00 2001 From: Marshall Greenblatt Date: Sat, 14 Dec 2024 13:32:15 -0500 Subject: [PATCH] Fix size_t undefined error --- libcef_dll/template_util.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libcef_dll/template_util.h b/libcef_dll/template_util.h index 4749f2c56..1a6fa5898 100644 --- a/libcef_dll/template_util.h +++ b/libcef_dll/template_util.h @@ -17,9 +17,9 @@ struct HasValidSize { bool operator()(const T*) { return true; } }; template -struct HasValidSize< - T, - typename std::enable_if_t::value>> { +struct HasValidSize::value>> { bool operator()(const T* s) { return s->size == sizeof(*s); } }; template