Skip to content

Commit

Permalink
Remove another always_false
Browse files Browse the repository at this point in the history
  • Loading branch information
jmcarcell committed Feb 19, 2025
1 parent 52f42b9 commit 67e6ec8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rootUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ consteval auto getGPBranchOffsets() {
} else if constexpr (std::is_same_v<T, std::string>) {
return GPBranchOffsets{7, 8};
} else {
static_assert(podio::detail::always_false<T>, "Unsupported type for generic parameters");
static_assert(sizeof(T) && false, "Unsupported type for generic parameters");
}
}

Expand Down

0 comments on commit 67e6ec8

Please sign in to comment.