Changeset c268eb in git


Ignore:
Timestamp:
Nov 19, 2014, 3:40:02 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
13298a1faecd114965bad6615ffff17b13c6ea0d4244921f0efc8c14adecb9be34ef341ea856c739
Parents:
66fa7159e6605255e24cc1278b31fb5bb0e9f109
Message:
fix: tr. #670 (intvec(int,intvec))
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r66fa71 rc268eb  
    71217121    {
    71227122      (*iv)[i]=(int)(long)h->Data();
     7123    }
     7124    else if (h->Typ()==INTVEC_CMD)
     7125    {
     7126      intvec *ivv=(intvec*)h->Data();
     7127      for(int j=0;j<ivv->length();j++,i++)
     7128      {
     7129        (*iv)[i]=(*ivv)[j];
     7130      }
     7131      i--;
    71237132    }
    71247133    else
Note: See TracChangeset for help on using the changeset viewer.