From b856a16a0af802001ba9c2357665788f7e10220d Mon Sep 17 00:00:00 2001 From: Bertrand Bellenot <bertrand.bellenot@cern.ch> Date: Tue, 3 Oct 2017 16:59:49 +0200 Subject: [PATCH] Use std::vector<Double_t> instead of Double_t[N] (thanks Guilherme) --- hist/histpainter/src/TGraphPainter.cxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/hist/histpainter/src/TGraphPainter.cxx b/hist/histpainter/src/TGraphPainter.cxx index 375698321c5..6e25bd9c7d0 100644 --- a/hist/histpainter/src/TGraphPainter.cxx +++ b/hist/histpainter/src/TGraphPainter.cxx @@ -3320,8 +3320,8 @@ void TGraphPainter::PaintGraphReverse(TGraph *theGraph, Option_t *option) Double_t YA2 = theGraph->GetYaxis()->GetXmax(); Double_t dX = XA1+XA2; Double_t dY = YA1+YA2; - Double_t *newX = new Double_t[N]; - Double_t *newY = new Double_t[N]; + std::vector<Double_t> newX(N); + std::vector<Double_t> newY(N); if (lrx) { opt.ReplaceAll("rx", ""); @@ -3407,8 +3407,6 @@ void TGraphPainter::PaintGraphReverse(TGraph *theGraph, Option_t *option) theHist->GetYaxis()->SetTickLength(TLY); theHist->GetXaxis()->SetAxisColor(XACOL); theHist->GetYaxis()->SetAxisColor(YACOL); - delete[] newX; - delete[] newY; } -- GitLab