Index: libcfa/src/iostream.hfa
===================================================================
--- libcfa/src/iostream.hfa	(revision bbdf9543a05598c023532754d58408f4d5a8ef07)
+++ libcfa/src/iostream.hfa	(revision 93c86ac1869d2c8bc7f7e9c3a40448d2489aa9a1)
@@ -10,6 +10,6 @@
 // Created On       : Wed May 27 17:56:53 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  2 11:25:39 2023
-// Update Count     : 410
+// Last Modified On : Thu Jun 15 22:34:31 2023
+// Update Count     : 411
 //
 
@@ -68,5 +68,5 @@
 
 forall( T, ostype & | ostream( ostype ) )
-	trait writeable {
+trait writeable {
 	ostype & ?|?( ostype &, T );
 }; // writeable
@@ -162,11 +162,11 @@
 
 struct _Ostream_Flags {
-	unsigned char eng:1;						// engineering notation
-	unsigned char neg:1;						// val is negative
-	unsigned char pc:1;							// precision specified
-	unsigned char left:1;						// left justify
-	unsigned char nobsdp:1;						// base prefix / decimal point
-	unsigned char sign:1;						// plus / minus sign
-	unsigned char pad0:1;						// zero pad
+	unsigned char eng:1;								// engineering notation
+	unsigned char neg:1;								// val is negative
+	unsigned char pc:1;									// precision specified
+	unsigned char left:1;								// left justify
+	unsigned char nobsdp:1;								// base prefix / decimal point
+	unsigned char sign:1;								// plus / minus sign
+	unsigned char pad0:1;								// zero pad
 };
 
