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 |
+
|