Changeset dc9dd94 for libcfa/src


Ignore:
Timestamp:
Jun 17, 2023, 1:24:58 PM (12 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
93c86ac
Parents:
bbdf954
Message:

formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.hfa

    rbbdf954 rdc9dd94  
    1010// Created On       : Wed May 27 17:56:53 2015
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Feb  2 11:25:39 2023
    13 // Update Count     : 410
     12// Last Modified On : Thu Jun 15 22:34:31 2023
     13// Update Count     : 411
    1414//
    1515
     
    6868
    6969forall( T, ostype & | ostream( ostype ) )
    70         trait writeable {
     70trait writeable {
    7171        ostype & ?|?( ostype &, T );
    7272}; // writeable
     
    162162
    163163struct _Ostream_Flags {
    164         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
     164        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
    171171};
    172172
Note: See TracChangeset for help on using the changeset viewer.