From 6557148c9fbe0a91a8e0166b465747668e5218e4 Mon Sep 17 00:00:00 2001 From: "Marc T. Henry de Frahan" Date: Mon, 20 May 2024 09:01:23 -0600 Subject: [PATCH] Fix clang-tidy warning (#501) --- Source/Factory.H | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Factory.H b/Source/Factory.H index d7bb553c9..fb341ac97 100644 --- a/Source/Factory.H +++ b/Source/Factory.H @@ -98,7 +98,7 @@ struct Factory friend T; static bool registered; - static_assert(std::is_base_of_v == true); + static_assert(std::is_base_of_v); static bool add_sub_type() {