Changeset dc9dd94
- Timestamp:
- Jun 17, 2023, 1:24:58 PM (17 months ago)
- Branches:
- master
- Children:
- 93c86ac
- Parents:
- bbdf954
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.hfa
rbbdf954 rdc9dd94 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Thu Feb 2 11:25:39202313 // Update Count : 41 012 // Last Modified On : Thu Jun 15 22:34:31 2023 13 // Update Count : 411 14 14 // 15 15 … … 68 68 69 69 forall( T, ostype & | ostream( ostype ) ) 70 70 trait writeable { 71 71 ostype & ?|?( ostype &, T ); 72 72 }; // writeable … … 162 162 163 163 struct _Ostream_Flags { 164 unsigned char eng:1; // engineering notation165 unsigned char neg:1; // val is negative166 unsigned char pc:1; // precision specified167 unsigned char left:1; // left justify168 unsigned char nobsdp:1; // base prefix / decimal point169 unsigned char sign:1; // plus / minus sign170 unsigned char pad0:1; // zero pad164 unsigned char eng:1; // engineering notation 165 unsigned char neg:1; // val is negative 166 unsigned char pc:1; // precision specified 167 unsigned char left:1; // left justify 168 unsigned char nobsdp:1; // base prefix / decimal point 169 unsigned char sign:1; // plus / minus sign 170 unsigned char pad0:1; // zero pad 171 171 }; 172 172
Note: See TracChangeset
for help on using the changeset viewer.