We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a911b commit 48ec3a4Copy full SHA for 48ec3a4
src/snmalloc/ds_core/concept.h
@@ -54,10 +54,10 @@ namespace snmalloc
54
* explicitly at call sites) until C++23 or later.
55
*/
56
template<typename, typename = bool>
57
- constexpr bool is_type_complete_v = false;
+ constexpr bool is_type_complete_v{false};
58
59
template<typename T>
60
- constexpr bool is_type_complete_v<T, stl::void_t<decltype(sizeof(T))>> = true;
+ constexpr bool is_type_complete_v<T, stl::void_t<decltype(sizeof(T))>>{true};
61
62
} // namespace snmalloc
63
#endif
0 commit comments