Skip to content

Commit da78992

Browse files
committed
Please consider the following formatting changes
1 parent e089b2f commit da78992

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

Framework/Foundation/include/Framework/Endian.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,6 @@
3333
#define O2_BIG_ENDIAN __BIG_ENDIAN
3434
#define O2_LITTLE_ENDIAN __LITTLE_ENDIAN
3535

36-
3736
template <typename T>
3837
inline uint16_t doSwap(std::same_as<uint16_t> auto x)
3938
{

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)