Skip to content

Commit a8ab06c

Browse files
committed
[filebuf.general] Whitespace improvements, fewer linebreaks
1 parent 7fb62d5 commit a8ab06c

File tree

1 file changed

+9
-12
lines changed

1 file changed

+9
-12
lines changed

source/iostreams.tex

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10890,10 +10890,8 @@
1089010890
basic_filebuf* open(const char* s, ios_base::openmode mode);
1089110891
basic_filebuf* open(const filesystem::path::value_type* s,
1089210892
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);
1089710895
basic_filebuf* close();
1089810896
native_handle_type native_handle() const noexcept;
1089910897

@@ -10905,16 +10903,15 @@
1090510903
int_type pbackfail(int_type c = traits::eof()) override;
1090610904
int_type overflow (int_type c = traits::eof()) override;
1090710905

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+
1091010908
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;
1091310910
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;
1091810915
};
1091910916
}
1092010917
\end{codeblock}

0 commit comments

Comments
 (0)