forked from boostorg/variant2
Merge pull request #40 from Lastique/patch-1
Add missing dots in visit_by_index docs
This commit is contained in:
@ -157,7 +157,7 @@ template<class R = /*unspecified*/, class F, class... V>
|
||||
// visit_by_index (extension)
|
||||
|
||||
template<class R = /*unspecified*/, class V, class... F>
|
||||
constexpr /*see below*/ visit_by_index(V&& v, F&&.. f);
|
||||
constexpr /*see below*/ visit_by_index(V&& v, F&&... f);
|
||||
|
||||
// monostate
|
||||
|
||||
@ -936,7 +936,7 @@ Remarks: :: If `R` is given explicitly, as in `visit<int>`, the return
|
||||
|
||||
```
|
||||
template<class R = /*unspecified*/, class V, class... F>
|
||||
constexpr /*see below*/ visit_by_index(V&& v, F&&.. f);
|
||||
constexpr /*see below*/ visit_by_index(V&& v, F&&... f);
|
||||
```
|
||||
[none]
|
||||
* {blank}
|
||||
|
Reference in New Issue
Block a user