👩💻 Join our community of thousands of amazing developers!
diff --git a/reference/cmath/riemann_zeta.md b/reference/cmath/riemann_zeta.md index f9763835d..b6a8981d5 100644 --- a/reference/cmath/riemann_zeta.md +++ b/reference/cmath/riemann_zeta.md @@ -7,15 +7,34 @@ ```cpp namespace std { -float riemann_zetaf(float x); -double riemann_zeta(double x); -long double riemann_zetal(long double x); + double + riemann_zeta(double x); // (1) C++17 + floating-point-type + riemann_zeta(floating-point-type x); // (1) C++23 + + Promoted + ...