Skip to content

Commit 48ec3a4

Browse files
committed
Rename
1 parent 46a911b commit 48ec3a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/snmalloc/ds_core/concept.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,10 @@ namespace snmalloc
5454
* explicitly at call sites) until C++23 or later.
5555
*/
5656
template<typename, typename = bool>
57-
constexpr bool is_type_complete_v = false;
57+
constexpr bool is_type_complete_v{false};
5858

5959
template<typename T>
60-
constexpr bool is_type_complete_v<T, stl::void_t<decltype(sizeof(T))>> = true;
60+
constexpr bool is_type_complete_v<T, stl::void_t<decltype(sizeof(T))>>{true};
6161

6262
} // namespace snmalloc
6363
#endif

0 commit comments

Comments
 (0)