]> www.ginac.de Git - ginac.git/blobdiff - ginac/ex.cpp
I really think that changes to top-level files should go to ginac-cvs
[ginac.git] / ginac / ex.cpp
index b6b968595e05e662aa89e2b89c0aefd4a274fbef..0d0657a52302df50ca2092c288fb56560695be41 100644 (file)
@@ -215,7 +215,7 @@ void ex::makewriteable()
 void ex::construct_from_basic(const basic & other)
 {
        if (!(other.flags & status_flags::evaluated)) {
-               const ex & tmpex(other.eval(1)); // evaluate only one (top) level
+               const ex & tmpex = other.eval(1); // evaluate only one (top) level
                bp = tmpex.bp;
                GINAC_ASSERT(bp->flags & status_flags::dynallocated);
                ++bp->refcount;