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 7d23323 commit 2b2f579Copy full SHA for 2b2f579
libc/src/math/generic/atan2l.cpp
@@ -17,7 +17,7 @@ namespace LIBC_NAMESPACE_DECL {
17
LLVM_LIBC_FUNCTION(long double, atan2l, (long double y, long double x)) {
18
#if defined(LIBC_TYPES_LONG_DOUBLE_IS_FLOAT64)
19
return static_cast<long double>(
20
- atan2(static_cast<double>(y), static_cast<double>(x)));
+ math::atan2(static_cast<double>(y), static_cast<double>(x)));
21
#else
22
#error "Extended precision is not yet supported"
23
#endif
0 commit comments