Skip to content

Commit

Permalink
Merge pull request #40 from Lastique/patch-1
Browse files Browse the repository at this point in the history
Add missing dots in visit_by_index docs
  • Loading branch information
pdimov authored Jan 11, 2024
2 parents 9e4234b + 9cf3298 commit c3071b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/variant2/reference.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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}
Expand Down

0 comments on commit c3071b7

Please sign in to comment.