Skip to content
Snippets Groups Projects
Commit 72291712 authored by Axel Naumann's avatar Axel Naumann
Browse files

[mathcore] Use non-deprecated stringstream.

parent 765ccac0
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment