Ignore:
Timestamp:
Oct 9, 2023, 8:02:42 AM (19 months ago)
Author:
Peter A. Buhr <pabuhr@…>
Branches:
master
Children:
946a6e4, eb779d5
Parents:
4817662
Message:

allow precision < 3 for manipulator eng

File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/iostream.cfa

    r4817662 r0d49efb  
    1111// Created On       : Wed May 27 17:56:53 2015
    1212// Last Modified By : Peter A. Buhr
    13 // Last Modified On : Sat Sep  2 14:42:01 2023
    14 // Update Count     : 1561
     13// Last Modified On : Sun Oct  8 12:10:21 2023
     14// Update Count     : 1564
    1515//
    1616
     
    651651                exp10 = floor( exp10, 3 ); \
    652652                value *= pow( 10.0, -exp10 ); \
    653                 if ( pc <= 3 ) pc = 3; \
     653                if ( pc < 0 ) pc = 3; \
    654654        } /* eng */ \
    655655\
Note: See TracChangeset for help on using the changeset viewer.