Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Feb 13, 2024
1 parent 6f6ec56 commit 2c16ff5
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Framework/Foundation/include/Framework/StructToTuple.h
Original file line number Diff line number Diff line change
Expand Up @@ -138,8 +138,7 @@ consteval auto brace_constructible_size(auto... Members)
if constexpr (requires { T{Members...}; } == false) {
static_assert(sizeof...(Members) != 0, "You need to make sure that you have implicit constructors or that you call the explicit constructor correctly.");
return sizeof...(Members) - 1;
}
else {
} else {
return brace_constructible_size<T>(Members..., UniversalType{});
}
}
Expand Down

0 comments on commit 2c16ff5

Please sign in to comment.