From 72291712496344127ecd3c030aa5cfa41cce9cab Mon Sep 17 00:00:00 2001 From: Axel Naumann <Axel.Naumann@cern.ch> Date: Tue, 14 May 2019 10:13:28 +0200 Subject: [PATCH] [mathcore] Use non-deprecated stringstream. --- math/mathcore/src/TComplex.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/math/mathcore/src/TComplex.cxx b/math/mathcore/src/TComplex.cxx index e513b02fbbb..ca85f001254 100644 --- a/math/mathcore/src/TComplex.cxx +++ b/math/mathcore/src/TComplex.cxx @@ -18,7 +18,7 @@ #include "TComplex.h" #include "Riostream.h" -#include <strstream> +#include <sstream> ClassImp(TComplex); @@ -56,7 +56,7 @@ std::istream& operator>>(std::istream& in, TComplex& c) namespace cling { std::string printValue(TComplex *c) { - std::strstream s; + std::stringstream s; s << *c; return s.str(); } -- GitLab