Changeset 32a34c2 in git for kernel/polys.cc


Ignore:
Timestamp:
Jun 20, 2007, 11:59:47 AM (16 years ago)
Author:
Oliver Wienand <wienand@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
230e188837a7d73c2e2b4ece3988a2fc6cd2ad2d
Parents:
1e14068a6b92967fd306e5824a2b9a14d4e921ac
Message:
polys.cc:
wrong call to nDelete (without &)


git-svn-id: file:///usr/local/Singular/svn/trunk@10128 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/polys.cc

    r1e1406 r32a34c2  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: polys.cc,v 1.20 2007-06-20 09:39:24 wienand Exp $ */
     4/* $Id: polys.cc,v 1.21 2007-06-20 09:59:47 wienand Exp $ */
    55
    66/*
     
    705705      {
    706706        c = nDiv(pGetCoeff(p1), k);
    707         nDelete(pGetCoeff(p1));
     707        nDelete(&pGetCoeff(p1));
    708708        pSetCoeff0(p1, c);
    709709        h = pNext(p1);
     
    711711        {
    712712          c = nDiv(pGetCoeff(h), k);
    713           nDelete(pGetCoeff(h));
     713          nDelete(&pGetCoeff(h));
    714714          pSetCoeff0(h, c);
    715715          pIter(h);
Note: See TracChangeset for help on using the changeset viewer.