From c20f44225542fd9e4c0cda17660af6a276d3ed9f Mon Sep 17 00:00:00 2001 From: Richard Kreckel Date: Wed, 14 Mar 2001 23:09:51 +0000 Subject: [PATCH 1/1] * add missing std::. --- ginac/numeric.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ginac/numeric.cpp b/ginac/numeric.cpp index 3bd24a6a..995672e3 100644 --- a/ginac/numeric.cpp +++ b/ginac/numeric.cpp @@ -233,7 +233,7 @@ numeric::numeric(const char *s) : basic(TINFO_numeric) #else char buf[14]; std::ostrstream(buf,sizeof(buf)) << unsigned(Digits) << std::ends; - term += "_" + string(buf); + term += "_" + std::string(buf); #endif // construct float using cln::cl_F(const char *) ctor. if (imaginary) -- 2.45.1