@@ -10751,10 +10751,10 @@
10751
10751
path canonical(const path& p, error_code& ec);
10752
10752
10753
10753
void copy(const path& from, const path& to);
10754
- void copy(const path& from, const path& to, error_code& ec) noexcept ;
10754
+ void copy(const path& from, const path& to, error_code& ec);
10755
10755
void copy(const path& from, const path& to, copy_options options);
10756
10756
void copy(const path& from, const path& to, copy_options options,
10757
- error_code& ec) noexcept ;
10757
+ error_code& ec);
10758
10758
10759
10759
bool copy_file(const path& from, const path& to);
10760
10760
bool copy_file(const path& from, const path& to, error_code& ec) noexcept;
10819
10819
bool is_directory(const path& p, error_code& ec) noexcept;
10820
10820
10821
10821
bool is_empty(const path& p);
10822
- bool is_empty(const path& p, error_code& ec) noexcept ;
10822
+ bool is_empty(const path& p, error_code& ec);
10823
10823
10824
10824
bool is_fifo(file_status s) noexcept;
10825
10825
bool is_fifo(const path& p);
13768
13768
directory_iterator() noexcept;
13769
13769
explicit directory_iterator(const path& p);
13770
13770
directory_iterator(const path& p, directory_options options);
13771
- directory_iterator(const path& p, error_code& ec) noexcept ;
13771
+ directory_iterator(const path& p, error_code& ec);
13772
13772
directory_iterator(const path& p, directory_options options,
13773
- error_code& ec) noexcept ;
13773
+ error_code& ec);
13774
13774
directory_iterator(const directory_iterator& rhs);
13775
13775
directory_iterator(directory_iterator&& rhs) noexcept;
13776
13776
~directory_iterator();
13781
13781
const directory_entry& operator*() const;
13782
13782
const directory_entry* operator->() const;
13783
13783
directory_iterator& operator++();
13784
- directory_iterator& increment(error_code& ec) noexcept ;
13784
+ directory_iterator& increment(error_code& ec);
13785
13785
13786
13786
// other members as required by \ref {input.iterators }, input iterators
13787
13787
};
13865
13865
\begin {itemdecl }
13866
13866
explicit directory_iterator(const path& p);
13867
13867
directory_iterator(const path& p, directory_options options);
13868
- directory_iterator(const path& p, error_code& ec) noexcept ;
13869
- directory_iterator(const path& p, directory_options options, error_code& ec) noexcept ;
13868
+ directory_iterator(const path& p, error_code& ec);
13869
+ directory_iterator(const path& p, directory_options options, error_code& ec);
13870
13870
\end {itemdecl }
13871
13871
13872
13872
\begin {itemdescr }
13925
13925
\indexlibrarymember {operator++}{directory_iterator}%
13926
13926
\begin {itemdecl }
13927
13927
directory_iterator& operator++();
13928
- directory_iterator& increment(error_code& ec) noexcept ;
13928
+ directory_iterator& increment(error_code& ec);
13929
13929
\end {itemdecl }
13930
13930
13931
13931
\begin {itemdescr }
13991
13991
explicit recursive_directory_iterator(const path& p);
13992
13992
recursive_directory_iterator(const path& p, directory_options options);
13993
13993
recursive_directory_iterator(const path& p, directory_options options,
13994
- error_code& ec) noexcept ;
13995
- recursive_directory_iterator(const path& p, error_code& ec) noexcept ;
13994
+ error_code& ec);
13995
+ recursive_directory_iterator(const path& p, error_code& ec);
13996
13996
recursive_directory_iterator(const recursive_directory_iterator& rhs);
13997
13997
recursive_directory_iterator(recursive_directory_iterator&& rhs) noexcept;
13998
13998
~recursive_directory_iterator();
14012
14012
operator=(recursive_directory_iterator&& rhs) noexcept;
14013
14013
14014
14014
recursive_directory_iterator& operator++();
14015
- recursive_directory_iterator& increment(error_code& ec) noexcept ;
14015
+ recursive_directory_iterator& increment(error_code& ec);
14016
14016
14017
14017
void pop();
14018
14018
void pop(error_code& ec);
14055
14055
\begin {itemdecl }
14056
14056
explicit recursive_directory_iterator(const path& p);
14057
14057
recursive_directory_iterator(const path& p, directory_options options);
14058
- recursive_directory_iterator(const path& p, directory_options options, error_code& ec) noexcept ;
14059
- recursive_directory_iterator(const path& p, error_code& ec) noexcept ;
14058
+ recursive_directory_iterator(const path& p, directory_options options, error_code& ec);
14059
+ recursive_directory_iterator(const path& p, error_code& ec);
14060
14060
\end {itemdecl }
14061
14061
14062
14062
\begin {itemdescr }
14213
14213
\indexlibrarymember {operator++}{recursive_directory_iterator}%
14214
14214
\begin {itemdecl }
14215
14215
recursive_directory_iterator& operator++();
14216
- recursive_directory_iterator& increment(error_code& ec) noexcept ;
14216
+ recursive_directory_iterator& increment(error_code& ec);
14217
14217
\end {itemdecl }
14218
14218
14219
14219
\begin {itemdescr }
14406
14406
14407
14407
\indexlibrary {\idxcode {copy}!\idxcode {path}}%
14408
14408
\begin {itemdecl }
14409
- void copy(const path& from, const path& to, error_code& ec) noexcept ;
14409
+ void copy(const path& from, const path& to, error_code& ec);
14410
14410
\end {itemdecl }
14411
14411
14412
14412
\begin {itemdescr }
14419
14419
\begin {itemdecl }
14420
14420
void copy(const path& from, const path& to, copy_options options);
14421
14421
void copy(const path& from, const path& to, copy_options options,
14422
- error_code& ec) noexcept ;
14422
+ error_code& ec);
14423
14423
\end {itemdecl }
14424
14424
14425
14425
\begin {itemdescr }
15094
15094
\indexlibrary {\idxcode {is_empty}!function}%
15095
15095
\begin {itemdecl }
15096
15096
bool is_empty(const path& p);
15097
- bool is_empty(const path& p, error_code& ec) noexcept ;
15097
+ bool is_empty(const path& p, error_code& ec);
15098
15098
\end {itemdecl }
15099
15099
15100
15100
\begin {itemdescr }
0 commit comments