From 40c407782d7ca1e1114835a1ead1691a20b25104 Mon Sep 17 00:00:00 2001 From: drmortalwombat <90205530+drmortalwombat@users.noreply.github.com> Date: Thu, 24 Oct 2024 07:21:39 +0200 Subject: [PATCH] Fix uppercase flag in iostream --- include/opp/iostream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/opp/iostream.h b/include/opp/iostream.h index 9dc3639..d2b07f1 100644 --- a/include/opp/iostream.h +++ b/include/opp/iostream.h @@ -37,7 +37,7 @@ public: showpos = 0x0800, skipws = 0x1000, unitbuf = 0x2000, - uppercase = 0x3000, + uppercase = 0x4000, adjustfield = 0x00b0, basefield = 0x004a,