Skip to content

Commit

Permalink
Fix clang-tidy warning (#501)
Browse files Browse the repository at this point in the history
  • Loading branch information
marchdf authored May 20, 2024
1 parent 37cb002 commit 6557148
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Factory.H
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct Factory
friend T;
static bool registered;

static_assert(std::is_base_of_v<Base, DeriveFrom> == true);
static_assert(std::is_base_of_v<Base, DeriveFrom>);

static bool add_sub_type()
{
Expand Down

0 comments on commit 6557148

Please sign in to comment.