Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Minor nits with the code

...

Code Block
bgColor#ffcccc
langc
static const double C = -0x16c087e80f1e27.0p-62;  /* -0.00138867637746099294692 */
;
extern inline void func(double a) {
  double b = a * C;
  /* ... */
}

...

Code Block
bgColor#ffcccc
langc
const double C = -0x16c087e80f1e27.0p-62;  /* -0.00138867637746099294692 */
;
extern inline void func(double a) {
  double b = a * C;
  /* ... */
}

...