From fef721c15551464b5ef152461b1a1f1f3779ce21 Mon Sep 17 00:00:00 2001 From: Rene Brun <Rene.Brun@cern.ch> Date: Sat, 27 Dec 2003 18:49:03 +0000 Subject: [PATCH] Fix a compilation problem on HP-UX/aCC git-svn-id: http://root.cern.ch/svn/root/trunk@7809 27541ba8-7e3a-0410-8455-c3a389f83636 --- hist/src/TFormula.cxx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/hist/src/TFormula.cxx b/hist/src/TFormula.cxx index 7a7c35c6c06..ba4667587c6 100644 --- a/hist/src/TFormula.cxx +++ b/hist/src/TFormula.cxx @@ -1,4 +1,4 @@ -// @(#)root/hist:$Name: $:$Id: TFormula.cxx,v 1.60 2003/12/11 23:30:35 brun Exp $ +// @(#)root/hist:$Name: $:$Id: TFormula.cxx,v 1.61 2003/12/18 13:21:33 brun Exp $ // Author: Nicolas Brun 19/08/95 /************************************************************************* @@ -2455,7 +2455,8 @@ TString TFormula::GetExpFormula() const continue; } } - TString ret = spos ? tab[spos-1] : ""; + TString ret = ""; + if (spos > 0) ret = tab[spos-1]; delete[] tab; delete[] ismulti; return ret; -- GitLab