File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
libc/src/__support/FPUtil Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -139,7 +139,7 @@ template <> struct FPProperties<FPType::IEEE754_Binary128> {
139
139
};
140
140
141
141
// -----------------------------------------------------------------------------
142
- template <typename FP> static constexpr FPType getFPType () {
142
+ template <typename FP> static constexpr FPType get_fp_type () {
143
143
if constexpr (cpp::is_same_v<FP, float > && __FLT_MANT_DIG__ == 24 )
144
144
return FPType::IEEE754_Binary32;
145
145
else if constexpr (cpp::is_same_v<FP, double > && __DBL_MANT_DIG__ == 53 )
@@ -169,7 +169,7 @@ template <typename FP> static constexpr FPType getFPType() {
169
169
}
170
170
171
171
template <typename FP>
172
- struct FloatProperties : public FPProperties <getFPType <FP>()> {};
172
+ struct FloatProperties : public FPProperties <get_fp_type <FP>()> {};
173
173
174
174
} // namespace fputil
175
175
} // namespace LIBC_NAMESPACE
You can’t perform that action at this time.
0 commit comments