Skip to content

Commit 118e6d9

Browse files
committed
[directory_iterator.members] [rec.dir.itr.members] fix "skip_permissions_denied"
1 parent 7201dbf commit 118e6d9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

source/iostreams.tex

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12669,7 +12669,7 @@
1266912669
elements representing the files in the directory, if any; otherwise the end
1267012670
iterator. However, if
1267112671
\begin{codeblock}
12672-
(options & directory_options::skip_permissions_denied) != directory_options::none
12672+
(options & directory_options::skip_permission_denied) != directory_options::none
1267312673
\end{codeblock}
1267412674
and construction encounters an error indicating
1267512675
that permission to access \tcode{p} is denied, constructs the end iterator
@@ -12846,7 +12846,7 @@
1284612846
entry in the directory \tcode{p} resolves to, if any; otherwise, the end iterator.
1284712847
However, if
1284812848
\begin{codeblock}
12849-
(options & directory_options::skip_permissions_denied) != directory_options::none
12849+
(options & directory_options::skip_permission_denied) != directory_options::none
1285012850
\end{codeblock}
1285112851
and construction encounters an error indicating
1285212852
that permission to access \tcode{p} is denied, constructs the end iterator
@@ -13020,7 +13020,7 @@
1302013020
then either directory \tcode{(*this)->path()} is recursively iterated into or,
1302113021
if
1302213022
\begin{codeblock}
13023-
(options() & directory_options::skip_permissions_denied) != directory_options::none
13023+
(options() & directory_options::skip_permission_denied) != directory_options::none
1302413024
\end{codeblock}
1302513025
and an error occurs indicating that permission to access directory \tcode{(*this)->path()} is denied,
1302613026
then directory \tcode{(*this)->path()} is

0 commit comments

Comments
 (0)