]> git.donarmstrong.com Git - lilypond.git/blob - flower/real.cc
Only use INFINITY if it is defined.
[lilypond.git] / flower / real.cc
1 #include "real.hh"
2
3 #include <cmath>
4 using namespace std;
5
6 const Real infinity_f =
7   #ifdef INFINITY
8   INFINITY
9   #else
10   HUGE_VAL  
11   #endif
12   ;
13