Changes in libcfa/src/iostream.cfa [cce4648:f6a4917]
- File:
-
- 1 edited
-
libcfa/src/iostream.cfa (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/iostream.cfa
rcce4648 rf6a4917 10 10 // Created On : Wed May 27 17:56:53 2015 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Wed Jan 19 08:15:53202213 // Update Count : 135 212 // Last Modified On : Thu Aug 25 18:05:49 2022 13 // Update Count : 1354 14 14 // 15 15 … … 197 197 fmt( os, "%s", buf ); \ 198 198 if ( isfinite( val ) ) { /* if number, print decimal point when no fraction or exponent */ \ 199 for ( i nt i = 0;; i += 1) { \199 for ( i; 0 ~ @ ) { \ 200 200 if ( i == len ) { fmt( os, "." ); break; } \ 201 201 if ( buf[i] == '.' || buf[i] == 'e' || buf[i] == 'E' ) break; /* decimal point or scientific ? */ \
Note:
See TracChangeset
for help on using the changeset viewer.