Skip to content

Commit

Permalink
Use space consistently in format
Browse files Browse the repository at this point in the history
  • Loading branch information
Steven-Roberts committed Jun 29, 2024
1 parent a415ce9 commit 9b654df
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions include/sundials/sundials_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ typedef float sunrealtype;
#define SUN_BIG_REAL FLT_MAX
#define SUN_SMALL_REAL FLT_MIN
#define SUN_UNIT_ROUNDOFF FLT_EPSILON
#define SUN_FORMAT_E "%." SUN_STRING(FLT_DIG) "e"
#define SUN_FORMAT_G "%." SUN_STRING(FLT_DIG) "g"
#define SUN_FORMAT_E "% ." SUN_STRING(FLT_DIG) "e"
#define SUN_FORMAT_G "% ." SUN_STRING(FLT_DIG) "g"

#elif defined(SUNDIALS_DOUBLE_PRECISION)

Expand All @@ -104,8 +104,8 @@ typedef double sunrealtype;
#define SUN_BIG_REAL DBL_MAX
#define SUN_SMALL_REAL DBL_MIN
#define SUN_UNIT_ROUNDOFF DBL_EPSILON
#define SUN_FORMAT_E "%." SUN_STRING(DBL_DIG) "e"
#define SUN_FORMAT_G "%." SUN_STRING(DBL_DIG) "g"
#define SUN_FORMAT_E "% ." SUN_STRING(DBL_DIG) "e"
#define SUN_FORMAT_G "% ." SUN_STRING(DBL_DIG) "g"

#elif defined(SUNDIALS_EXTENDED_PRECISION)

Expand Down

0 comments on commit 9b654df

Please sign in to comment.