10890
10890
basic_filebuf* open(const char* s, ios_base::openmode mode);
10891
10891
basic_filebuf* open(const filesystem::path::value_type* s,
10892
10892
ios_base::openmode mode); // wide systems only; see \ref{fstream.syn}
10893
- basic_filebuf* open(const string& s,
10894
- ios_base::openmode mode);
10895
- basic_filebuf* open(const filesystem::path& s,
10896
- ios_base::openmode mode);
10893
+ basic_filebuf* open(const string& s, ios_base::openmode mode);
10894
+ basic_filebuf* open(const filesystem::path& s, ios_base::openmode mode);
10897
10895
basic_filebuf* close();
10898
10896
native_handle_type native_handle() const noexcept;
10899
10897
@@ -10905,16 +10903,15 @@
10905
10903
int_type pbackfail(int_type c = traits::eof()) override;
10906
10904
int_type overflow (int_type c = traits::eof()) override;
10907
10905
10908
- basic_streambuf<charT, traits>* setbuf(char_type* s,
10909
- streamsize n) override;
10906
+ basic_streambuf<charT, traits>* setbuf(char_type* s, streamsize n) override;
10907
+
10910
10908
pos_type seekoff(off_type off, ios_base::seekdir way,
10911
- ios_base::openmode which
10912
- = ios_base::in | ios_base::out) override;
10909
+ ios_base::openmode which = ios_base::in | ios_base::out) override;
10913
10910
pos_type seekpos(pos_type sp,
10914
- ios_base::openmode which
10915
- = ios_base::in | ios_base::out) override;
10916
- int sync() override;
10917
- void imbue(const locale& loc) override;
10911
+ ios_base::openmode which = ios_base::in | ios_base::out) override;
10912
+
10913
+ int sync() override;
10914
+ void imbue(const locale& loc) override;
10918
10915
};
10919
10916
}
10920
10917
\end{codeblock}
0 commit comments