Skip to content

Commit 02bacdb

Browse files
Dawn Perchikzygoloid
authored andcommitted
LWG3014 More noexcept issues with filesystem operations
1 parent 2240280 commit 02bacdb

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

source/iostreams.tex

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -10757,17 +10757,17 @@
1075710757
error_code& ec);
1075810758

1075910759
bool copy_file(const path& from, const path& to);
10760-
bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
10760+
bool copy_file(const path& from, const path& to, error_code& ec);
1076110761
bool copy_file(const path& from, const path& to, copy_options option);
1076210762
bool copy_file(const path& from, const path& to, copy_options option,
10763-
error_code& ec) noexcept;
10763+
error_code& ec);
1076410764

1076510765
void copy_symlink(const path& existing_symlink, const path& new_symlink);
1076610766
void copy_symlink(const path& existing_symlink, const path& new_symlink,
1076710767
error_code& ec) noexcept;
1076810768

1076910769
bool create_directories(const path& p);
10770-
bool create_directories(const path& p, error_code& ec) noexcept;
10770+
bool create_directories(const path& p, error_code& ec);
1077110771

1077210772
bool create_directory(const path& p);
1077310773
bool create_directory(const path& p, error_code& ec) noexcept;
@@ -10866,7 +10866,7 @@
1086610866
bool remove(const path& p, error_code& ec) noexcept;
1086710867

1086810868
uintmax_t remove_all(const path& p);
10869-
uintmax_t remove_all(const path& p, error_code& ec) noexcept;
10869+
uintmax_t remove_all(const path& p, error_code& ec);
1087010870

1087110871
void rename(const path& from, const path& to);
1087210872
void rename(const path& from, const path& to, error_code& ec) noexcept;
@@ -14563,7 +14563,7 @@
1456314563
\indexlibrary{\idxcode{copy_file}}%
1456414564
\begin{itemdecl}
1456514565
bool copy_file(const path& from, const path& to);
14566-
bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
14566+
bool copy_file(const path& from, const path& to, error_code& ec);
1456714567
\end{itemdecl}
1456814568

1456914569
\begin{itemdescr}
@@ -14580,7 +14580,7 @@
1458014580
\begin{itemdecl}
1458114581
bool copy_file(const path& from, const path& to, copy_options options);
1458214582
bool copy_file(const path& from, const path& to, copy_options options,
14583-
error_code& ec) noexcept;
14583+
error_code& ec);
1458414584
\end{itemdecl}
1458514585

1458614586
\begin{itemdescr}
@@ -14660,7 +14660,7 @@
1466014660
\indexlibrary{\idxcode{create_directories}}%
1466114661
\begin{itemdecl}
1466214662
bool create_directories(const path& p);
14663-
bool create_directories(const path& p, error_code& ec) noexcept;
14663+
bool create_directories(const path& p, error_code& ec);
1466414664
\end{itemdecl}
1466514665

1466614666
\begin{itemdescr}
@@ -15488,7 +15488,7 @@
1548815488
\indexlibrary{\idxcode{remove_all}}%
1548915489
\begin{itemdecl}
1549015490
uintmax_t remove_all(const path& p);
15491-
uintmax_t remove_all(const path& p, error_code& ec) noexcept;
15491+
uintmax_t remove_all(const path& p, error_code& ec);
1549215492
\end{itemdecl}
1549315493

1549415494
\begin{itemdescr}

0 commit comments

Comments
 (0)