aboutsummaryrefslogtreecommitdiff
path: root/libc/src/__support/FPUtil/PolyEval.h
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/__support/FPUtil/PolyEval.h')
-rw-r--r--libc/src/__support/FPUtil/PolyEval.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libc/src/__support/FPUtil/PolyEval.h b/libc/src/__support/FPUtil/PolyEval.h
index 1202728..7a63845 100644
--- a/libc/src/__support/FPUtil/PolyEval.h
+++ b/libc/src/__support/FPUtil/PolyEval.h
@@ -20,7 +20,7 @@
// Example: to evaluate x^3 + 2*x^2 + 3*x + 4, call
// polyeval( x, 4.0, 3.0, 2.0, 1.0 )
-namespace __llvm_libc {
+namespace LIBC_NAMESPACE {
namespace fputil {
template <typename T>
@@ -48,6 +48,6 @@ polyeval(T x, T a0, Ts... a) {
}
} // namespace fputil
-} // namespace __llvm_libc
+} // namespace LIBC_NAMESPACE
#endif // LLVM_LIBC_SRC___SUPPORT_FPUTIL_POLYEVAL_H