From d74c0592fce1d5733db9bdfcb09611e590e25605 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ecrin=20Y=C4=B1ld=C4=B1z?= Date: Wed, 20 Mar 2024 16:53:58 +0300 Subject: [PATCH] Add binary flag to xiosbase class to correct place --- stl/inc/xiosbase | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stl/inc/xiosbase b/stl/inc/xiosbase index af192b61692..3d19d5969a2 100644 --- a/stl/inc/xiosbase +++ b/stl/inc/xiosbase @@ -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