[libc-commits] [libc] [libc] Fix for adding macro I (PR #111872)
Shourya Goel via libc-commits
libc-commits at lists.llvm.org
Fri Oct 11 11:45:41 PDT 2024
================
@@ -26,11 +26,11 @@ using LIBC_NAMESPACE::Sign;
static constexpr int ROUNDING_MODES[4] = {FE_UPWARD, FE_DOWNWARD, FE_TOWARDZERO,
FE_TONEAREST};
-template <typename F, typename I, bool TestModes = false>
+template <typename F, typename OutType, bool TestModes = false>
----------------
Sh0g0-1758 wrote:
@lntue , could we not also have the template def here as :
```
template <typename FloatType, typename IntType,
```
https://github.com/llvm/llvm-project/pull/111872
More information about the libc-commits
mailing list