Skip to content

Commit c19ff87

Browse files
authored
[range.istream.view] Fix missing ranges:: qualifier in example (#4296)
1 parent 38b6811 commit c19ff87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/ranges.tex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2751,7 +2751,7 @@
27512751
\begin{example}
27522752
\begin{codeblock}
27532753
auto ints = istringstream{"0 1 2 3 4"};
2754-
ranges::copy(istream_view<int>(ints), ostream_iterator<int>{cout, "-"});
2754+
ranges::copy(ranges::istream_view<int>(ints), ostream_iterator<int>{cout, "-"});
27552755
// prints \tcode{0-1-2-3-4-}
27562756
\end{codeblock}
27572757
\end{example}

0 commit comments

Comments
 (0)