Skip to content

Commit 0620ceb

Browse files
committed
Please consider the following formatting changes
1 parent a643e97 commit 0620ceb

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Framework/Foundation/include/Framework/StructToTuple.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,7 @@ consteval auto brace_constructible_size(auto... Members)
138138
if constexpr (requires { T{Members...}; } == false) {
139139
static_assert(sizeof...(Members) != 0, "You need to make sure that you have implicit constructors or that you call the explicit constructor correctly.");
140140
return sizeof...(Members) - 1;
141-
}
142-
else {
141+
} else {
143142
return brace_constructible_size<T>(Members..., UniversalType{});
144143
}
145144
}

0 commit comments

Comments
 (0)