From Jason Turner

[depr.ellipsis.comma]

Diff to HTML by rtfpessoa

Files changed (1) hide show
  1. tmp/tmpqmo1tmc7/{from.md → to.md} +15 -0
tmp/tmpqmo1tmc7/{from.md → to.md} RENAMED
@@ -0,0 +1,15 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ## Non-comma-separated ellipsis parameters <a id="depr.ellipsis.comma">[[depr.ellipsis.comma]]</a>
2
+
3
+ A *parameter-declaration-clause* of the form
4
+ *parameter-declaration-list* `...` is deprecated [[dcl.fct]].
5
+
6
+ [*Example 1*:
7
+
8
+ ``` cpp
9
+ void f(int...); // deprecated
10
+ void g(auto...); // OK, declares a function parameter pack
11
+ void h(auto......); // deprecated
12
+ ```
13
+
14
+ — *end example*]
15
+