From af7a61a5464c266426a20e7dacf6c52bb80b28e9 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Thu, 25 Jul 2024 23:16:04 +0200 Subject: lint: fix lints from newer clang-tidy version --- option.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'option.h') diff --git a/option.h b/option.h index a3ad60a..20104d7 100644 --- a/option.h +++ b/option.h @@ -15,7 +15,7 @@ constexpr bool is_trivially_destructible_v = /// Definition of std::enable_if_t for older c++ std versions. template -using enable_if_t = typename std::enable_if::type; +using enable_if_t = std::enable_if_t; } // namespace impl /// The NONE type. -- cgit v1.2.3