From: fred Date: Tue, 26 Mar 2002 21:51:27 +0000 (+0000) Subject: lilypond-1.3.0 X-Git-Tag: release/1.5.59~2351 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=b44086c44e2814c8756c65f9bea2965f5169a696;p=lilypond.git lilypond-1.3.0 --- diff --git a/flower/include/real.hh b/flower/include/real.hh index ec98982cdf..630d3dd692 100644 --- a/flower/include/real.hh +++ b/flower/include/real.hh @@ -25,7 +25,7 @@ template inline T abs (T x) template inline int sign (T x) { if (x) - return x > 0 ? 1 : -1; + return x > T(0) ? 1 : -1; return 0; }