We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c7457c commit 4078236Copy full SHA for 4078236
libc/src/__support/CPP/type_traits/is_complex.h
@@ -42,7 +42,9 @@ template <typename T> struct is_complex {
42
template <typename T>
43
LIBC_INLINE_VAR constexpr bool is_complex_v = is_complex<T>::value;
44
template <typename T1, typename T2>
45
-LIBC_INLINE_VAR constexpr bool is_complex_type_same() {return is_same_v<remove_cv_t<T1>, T2>;}
+LIBC_INLINE_VAR constexpr bool is_complex_type_same() {
46
+ return is_same_v<remove_cv_t<T1>, T2>;
47
+}
48
49
} // namespace cpp
50
} // namespace LIBC_NAMESPACE_DECL
0 commit comments