Skip to content

Commit

Permalink
Fix erroneous comment. Fixes #165
Browse files Browse the repository at this point in the history
  • Loading branch information
mclow committed Oct 27, 2023
1 parent 7c21f2d commit 6be38c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/boost/iostreams/filter/newline.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ const char LF = 0x0A;

// Exactly one of the following three flags must be present.

const int posix = 1; // Use CR as line separator.
const int mac = 2; // Use LF as line separator.
const int posix = 1; // Use LF as line separator.
const int mac = 2; // Use CR as line separator.
const int dos = 4; // Use CRLF as line separator.
const int mixed = 8; // Mixed line endings.
const int final_newline = 16;
Expand Down

0 comments on commit 6be38c3

Please sign in to comment.