Skip to content

Commit b51d326

Browse files
[clang-tidy] Avoid false positive diagnostic report in constexpr-if concept test
Signed-off-by: Christian Parpart <[email protected]>
1 parent c4ff881 commit b51d326

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

include/reflection-cpp/reflection.hpp

+1
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ namespace detail
125125
template <class AggregateType, class... Args>
126126
requires(std::is_aggregate_v<AggregateType>)
127127
constexpr inline auto CountMembers = []() constexpr {
128+
// NOLINTNEXTLINE(modernize-use-designated-initializers)
128129
if constexpr (requires { AggregateType { Args {}..., AnyType {} }; })
129130
return CountMembers<AggregateType, Args..., AnyType>;
130131
else

0 commit comments

Comments
 (0)