]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
* Added some long-pending docu.
[ginac.git] / check / time_dennyfliegner.cpp
index d81ba91930551ecde72eb3931c5d2ab220adfd00..07ebbe6fa2fdd3084596c0cd0d9b97436858e203 100644 (file)
@@ -33,15 +33,9 @@ static unsigned expand_subs(unsigned size)
        vector<symbol> a;
        ex e;
        for (unsigned i=0; i<size; ++i) {
-#if defined(HAVE_SSTREAM)
                ostringstream buf;
                buf << "a" << i << ends;
                a.push_back(symbol(buf.str()));
-#else
-               char buf[4];
-               ostrstream(buf,sizeof(buf)) << "a" << i << ends;
-               a.push_back(symbol(buf));
-#endif
                e += a[i];
        }
        ex aux;