File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed
include/ccmath/internal/math/runtime/pp Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change 22#pragma once
33
44#include " fwddecl.hpp"
5- // #include "flags.hpp"
5+ // #include "flags.hpp"
66
77namespace ccm ::pp::detail
88{
99 template <typename T>
10- struct assert_unreachable
10+ struct assert_unreachable
1111 {
1212 static_assert (!std::is_same_v<T, T>, " this should be unreachable" );
1313 };
1414
15-
1615 template <typename Abi, typename = void >
17- struct is_simd_abi_tag : std::false_type {};
16+ struct is_simd_abi_tag : std::false_type
17+ {
18+ };
1819
1920 template <typename Abi>
20- struct is_simd_abi_tag <Abi, std::void_t <
21- decltype (!Abi:: template IsValid< void >::value),
22- typename Abi::IsValidAbiTag>> : std::true_type { };
23- }
21+ struct is_simd_abi_tag <Abi, std::void_t <decltype (!Abi:: template IsValid< void >::value), typename Abi::IsValidAbiTag>> : std::true_type
22+ {
23+ };
24+ } // namespace ccm::pp::detail
You can’t perform that action at this time.
0 commit comments