Skip to content

Commit

Permalink
Add binary flag to xiosbase class to correct place (#4493)
Browse files Browse the repository at this point in the history
  • Loading branch information
ecrinyildiz authored Mar 21, 2024
1 parent 47825be commit 8e2d724
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stl/inc/xiosbase
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ public:
static constexpr int ate = 0x04;
static constexpr int app = 0x08;
static constexpr int trunc = 0x10;
static constexpr int binary = 0x20;
static constexpr int _Nocreate = 0x40;
static constexpr int _Noreplace = 0x80;
static constexpr int binary = 0x20;
#if _HAS_CXX23
static constexpr int noreplace = _Noreplace;
#endif
Expand Down

0 comments on commit 8e2d724

Please sign in to comment.