]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
documentation update
[ginac.git] / check / time_dennyfliegner.cpp
index d81ba91930551ecde72eb3931c5d2ab220adfd00..5f9e908cf1709bd02fc9ded017dde62a4b0a619f 100644 (file)
@@ -7,7 +7,7 @@
  *  after which e should be just a1^2. */
 
 /*
- *  GiNaC Copyright (C) 1999-2001 Johannes Gutenberg University Mainz, Germany
+ *  GiNaC Copyright (C) 1999-2002 Johannes Gutenberg University Mainz, Germany
  *
  *  This program is free software; you can redistribute it and/or modify
  *  it under the terms of the GNU General Public License as published by
@@ -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;