Skip to content

Commit

Permalink
[fstream.general] Insert space around | for consistency (#7534)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas-Krug authored Jan 2, 2025
1 parent 9766bc8 commit f417d50
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/iostreams.tex
Original file line number Diff line number Diff line change
Expand Up @@ -12305,7 +12305,7 @@
ios_base::openmode mode = ios_base::in | ios_base::out);
explicit basic_fstream(
const filesystem::path::value_type* s,
ios_base::openmode mode = ios_base::in|ios_base::out); // wide systems only; see \ref{fstream.syn}
ios_base::openmode mode = ios_base::in | ios_base::out); // wide systems only; see \ref{fstream.syn}
explicit basic_fstream(
const string& s,
ios_base::openmode mode = ios_base::in | ios_base::out);
Expand All @@ -12330,7 +12330,7 @@
ios_base::openmode mode = ios_base::in | ios_base::out);
void open(
const filesystem::path::value_type* s,
ios_base::openmode mode = ios_base::in|ios_base::out); // wide systems only; see \ref{fstream.syn}
ios_base::openmode mode = ios_base::in | ios_base::out); // wide systems only; see \ref{fstream.syn}
void open(
const string& s,
ios_base::openmode mode = ios_base::in | ios_base::out);
Expand Down

0 comments on commit f417d50

Please sign in to comment.