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