From b44086c44e2814c8756c65f9bea2965f5169a696 Mon Sep 17 00:00:00 2001 From: fred Date: Tue, 26 Mar 2002 21:51:27 +0000 Subject: [PATCH] lilypond-1.3.0 --- flower/include/real.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- 2.39.5