Skip to content

Commit 0eaef60

Browse files
committed
Please consider the following formatting changes
1 parent 18a9be8 commit 0eaef60

File tree

1 file changed

+2
-3
lines changed
  • Framework/Foundation/include/Framework

1 file changed

+2
-3
lines changed

Framework/Foundation/include/Framework/Pack.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,13 +114,12 @@ consteval auto prune_voids_pack(Result result, pack<>)
114114
return result;
115115
}
116116

117-
template<typename T>
117+
template <typename T>
118118
concept void_pack_element = std::is_void_v<T>;
119119

120-
template<typename T>
120+
template <typename T>
121121
concept nonvoid_pack_element = !void_pack_element<T>;
122122

123-
124123
// The first one is non void, but one of the others is void
125124
template <typename... Rs, nonvoid_pack_element T, typename... Ts>
126125
consteval auto prune_voids_pack(pack<Rs...> result, pack<T, Ts...>)

0 commit comments

Comments
 (0)