Skip to content

Commit 4078236

Browse files
committed
fmt
1 parent 0c7457c commit 4078236

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

libc/src/__support/CPP/type_traits/is_complex.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ template <typename T> struct is_complex {
4242
template <typename T>
4343
LIBC_INLINE_VAR constexpr bool is_complex_v = is_complex<T>::value;
4444
template <typename T1, typename T2>
45-
LIBC_INLINE_VAR constexpr bool is_complex_type_same() {return is_same_v<remove_cv_t<T1>, T2>;}
45+
LIBC_INLINE_VAR constexpr bool is_complex_type_same() {
46+
return is_same_v<remove_cv_t<T1>, T2>;
47+
}
4648

4749
} // namespace cpp
4850
} // namespace LIBC_NAMESPACE_DECL

0 commit comments

Comments
 (0)