]> www.ginac.de Git - ginac.git/blobdiff - check/time_dennyfliegner.cpp
finalized 1.0.14
[ginac.git] / check / time_dennyfliegner.cpp
index 4f6b7dc35e522918494266a79eb73b183fae9c83..ea3b7be5abe9b812175a596ee8fbfccc16b23b77 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-2003 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[5];  // 'a' + 3 decimal digits + '\n'
-               ostrstream(buf,sizeof(buf)) << "a" << i << ends;
-               a.push_back(symbol(buf));
-#endif
                e += a[i];
        }
        ex aux;