Skip to content

Commit e8c2b45

Browse files
committed
[fs.dir.entry.obs] Fix position of error_code arguments
Fixes cplusplus#1630
1 parent 8279660 commit e8c2b45

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

source/iostreams.tex

+9-9
Original file line numberDiff line numberDiff line change
@@ -12902,7 +12902,7 @@
1290212902

1290312903
\begin{itemdescr}
1290412904
\pnum
12905-
\returns \tcode{exists(this->status())} or \tcode{exists(this->status(), ec)}, respectively.
12905+
\returns \tcode{exists(this->status())} or \tcode{exists(this->status(ec))}, respectively.
1290612906

1290712907
\pnum
1290812908
\throws As specified in~\ref{fs.err.report}.
@@ -12916,7 +12916,7 @@
1291612916

1291712917
\begin{itemdescr}
1291812918
\pnum
12919-
\returns \tcode{is_block_file(this->status())} or \tcode{is_block_file(this->status(), ec)}, respectively.
12919+
\returns \tcode{is_block_file(this->status())} or \tcode{is_block_file(this->status(ec))}, respectively.
1292012920

1292112921
\pnum
1292212922
\throws As specified in~\ref{fs.err.report}.
@@ -12930,7 +12930,7 @@
1293012930

1293112931
\begin{itemdescr}
1293212932
\pnum
12933-
\returns \tcode{is_character_file(this->status())} or \tcode{is_character_file(this->status(), ec)}, respectively.
12933+
\returns \tcode{is_character_file(this->status())} or \tcode{is_character_file(this->status(ec))}, respectively.
1293412934

1293512935
\pnum
1293612936
\throws As specified in~\ref{fs.err.report}.
@@ -12944,7 +12944,7 @@
1294412944

1294512945
\begin{itemdescr}
1294612946
\pnum
12947-
\returns \tcode{is_directory(this->status())} or \tcode{is_directory(this->status(), ec)}, respectively.
12947+
\returns \tcode{is_directory(this->status())} or \tcode{is_directory(this->status(ec))}, respectively.
1294812948

1294912949
\pnum
1295012950
\throws As specified in~\ref{fs.err.report}.
@@ -12958,7 +12958,7 @@
1295812958

1295912959
\begin{itemdescr}
1296012960
\pnum
12961-
\returns \tcode{is_fifo(this->status())} or \tcode{is_fifo(this->status(), ec)}, respectively.
12961+
\returns \tcode{is_fifo(this->status())} or \tcode{is_fifo(this->status(ec))}, respectively.
1296212962

1296312963
\pnum
1296412964
\throws As specified in~\ref{fs.err.report}.
@@ -12972,7 +12972,7 @@
1297212972

1297312973
\begin{itemdescr}
1297412974
\pnum
12975-
\returns \tcode{is_other(this->status())} or \tcode{is_other(this->status(), ec)}, respectively.
12975+
\returns \tcode{is_other(this->status())} or \tcode{is_other(this->status(ec))}, respectively.
1297612976

1297712977
\pnum
1297812978
\throws As specified in~\ref{fs.err.report}.
@@ -12986,7 +12986,7 @@
1298612986

1298712987
\begin{itemdescr}
1298812988
\pnum
12989-
\returns \tcode{is_regular_file(this->status())} or \tcode{is_regular_file(this->status(), ec)}, respectively.
12989+
\returns \tcode{is_regular_file(this->status())} or \tcode{is_regular_file(this->status(ec))}, respectively.
1299012990

1299112991
\pnum
1299212992
\throws As specified in~\ref{fs.err.report}.
@@ -13000,7 +13000,7 @@
1300013000

1300113001
\begin{itemdescr}
1300213002
\pnum
13003-
\returns \tcode{is_socket(this->status())} or \tcode{is_socket(this->status(), ec)}, respectively.
13003+
\returns \tcode{is_socket(this->status())} or \tcode{is_socket(this->status(ec))}, respectively.
1300413004

1300513005
\pnum
1300613006
\throws As specified in~\ref{fs.err.report}.
@@ -13014,7 +13014,7 @@
1301413014

1301513015
\begin{itemdescr}
1301613016
\pnum
13017-
\returns \tcode{is_symlink(this->symlink_status())} or \tcode{is_symlink(this->symlink_status(), ec)}, respectively.
13017+
\returns \tcode{is_symlink(this->symlink_status())} or \tcode{is_symlink(this->symlink_status(ec))}, respectively.
1301813018

1301913019
\pnum
1302013020
\throws As specified in~\ref{fs.err.report}.

0 commit comments

Comments
 (0)