From 8ef913f6744e69e1c641b2941dee9731e0da2a10 Mon Sep 17 00:00:00 2001 From: Eisenwave Date: Sat, 28 Mar 2026 21:48:53 +0100 Subject: [PATCH] P4156R0 Rename meta::has_ellipsis_parameter to meta::is_vararg_function Fixes NB FR 017-155 (C++26 CD). --- source/meta.tex | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/source/meta.tex b/source/meta.tex index caf38491f6..01d59f0f23 100644 --- a/source/meta.tex +++ b/source/meta.tex @@ -2766,7 +2766,7 @@ consteval bool is_function_parameter(info r); consteval bool is_explicit_object_parameter(info r); consteval bool has_default_argument(info r); - consteval bool has_ellipsis_parameter(info r); + consteval bool is_vararg_function(info r); consteval bool is_template(info r); consteval bool is_function_template(info r); @@ -4480,16 +4480,16 @@ Otherwise, \tcode{false}. \end{itemdescr} -\indexlibraryglobal{has_ellipsis_parameter}% +\indexlibraryglobal{is_vararg_function}% \begin{itemdecl} -consteval bool has_ellipsis_parameter(info r); +consteval bool is_vararg_function(info r); \end{itemdecl} \begin{itemdescr} \pnum \returns \tcode{true} if \tcode{r} represents a function or function type -that has an ellipsis in its parameter-type-list\iref{dcl.fct}. +that is a vararg function\iref{dcl.fct}. Otherwise, \tcode{false}. \end{itemdescr}