File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 75
75
\grammarterm {decl-specifier}{s} are used in a subsequent declaration,
76
76
they do not have the same meaning, as in
77
77
\begin {codeblock }
78
- struct S { ... };
78
+ struct S { @ \commentellip@ };
79
79
S S, T; // declare two instances of \tcode {struct S}
80
80
\end {codeblock }
81
81
which is not equivalent to
82
82
\begin {codeblock }
83
- struct S { ... };
83
+ struct S { @ \commentellip@ };
84
84
S S;
85
85
S T; // error
86
86
\end {codeblock }
2027
2027
\tcode {c)}
2028
2028
is the
2029
2029
\grammarterm {declarator};
2030
- \tcode {\{ /* ... \ */ \} }
2030
+ \tcode {\{ \commentellip {} \} }
2031
2031
is the
2032
2032
\grammarterm {function-body}.
2033
2033
\end {example }
Original file line number Diff line number Diff line change 1092
1092
that of the following conversion function:
1093
1093
\begin {codeblock }
1094
1094
struct Closure {
1095
- template<class T> auto operator()(T t) const { ... }
1095
+ template<class T> auto operator()(T t) const { @ \commentellip@ }
1096
1096
template<class T> static auto lambda_call_operator_invoker(T a) {
1097
1097
// forwards execution to \tcode {operator()(a)} and therefore has
1098
1098
// the same return type deduced
1099
- ...
1099
+ @ \commentellip@
1100
1100
}
1101
1101
template<class T> using fptr_t =
1102
1102
decltype(lambda_call_operator_invoker(declval<T>())) (*)(T);
Original file line number Diff line number Diff line change 368
368
types.
369
369
One way to do this might be
370
370
\begin {codeblock }
371
- template<class stateT> class fpos { ... }; // depends on nothing
372
- using _STATE = ... ; // implementation private declaration of \tcode {stateT}
371
+ template<class stateT> class fpos { @ \commentellip@ }; // depends on nothing
372
+ using _STATE = @ \commentellip@ ; // implementation private declaration of \tcode {stateT}
373
373
374
374
using streampos = fpos<_STATE>;
375
375
You can’t perform that action at this time.
0 commit comments