Skip to content

Commit

Permalink
Remove extra semicolon for pedantic compilers
Browse files Browse the repository at this point in the history
  • Loading branch information
mquevill committed Sep 25, 2020
1 parent 794ca69 commit 47e4fcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/mxx/stream.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ inline sync_ostream sync_cerr(const mxx::comm& comm, int root = 0) {
template <typename base_stream>
inline sync_ostream sync_os(const mxx::comm& comm, base_stream& bs, int root = 0) {
return comm.rank() == root ? sync_ostream(comm, root, bs) : sync_ostream(comm, root);
};
}

// TODO: a sync ofstream
// TODO: a sync cout/cerr which writes [rank] before every line/msg
Expand Down

0 comments on commit 47e4fcb

Please sign in to comment.