Changeset 9750e3 in git for Singular


Ignore:
Timestamp:
May 28, 2015, 1:58:57 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '2a584933abf2a2d3082034c7586d38bb6de1a30a')
Children:
f13c8503a7b51968500f8c36c4cc38ec95870193
Parents:
37118282b339c44c8ed29fe938c803f9a24fcfec
Message:
compiler warnings: unused variables in iparith.cc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r3711828 r9750e3  
    10941094  if (res->data==NULL)
    10951095  {
    1096      Werror("matrix size not compatible(%dx%d, %dx%d)",
     1096     Werror("matrix size not compatible(%dx%d, %dx%d) in *",
    10971097             MATROWS(A),MATCOLS(A),MATROWS(B),MATCOLS(B));
    10981098     return TRUE;
     
    14821482  poly r=p; // pointer to the beginning of component i
    14831483  poly o=NULL;
    1484   unsigned i=(unsigned)(long)v->Data();
     1484  int i=(int)(long)v->Data();
    14851485  while (p!=NULL)
    14861486  {
     
    53315331}
    53325332static int WerrorS_dummy_cnt=0;
    5333 static void WerrorS_dummy(const char *s)
     5333static void WerrorS_dummy(const char *)
    53345334{
    53355335  WerrorS_dummy_cnt++;
     
    53415341  WerrorS_dummy_cnt=0;
    53425342  BOOLEAN bo=jjLOAD(s,TRUE);
    5343   if (WerrorS_dummy_cnt>0) Print("loading of >%s< failed\n",s);
     5343  if (bo || (WerrorS_dummy_cnt>0)) Print("loading of >%s< failed\n",s);
    53445344  WerrorS_callback=WerrorS_save;
    53455345  errorreported=0;
     
    81258125{
    81268126  memset(res,0,sizeof(sleftv));
    8127   BOOLEAN call_failed=FALSE;
    81288127
    81298128  if (!errorreported)
     
    83138312{
    83148313  memset(res,0,sizeof(sleftv));
    8315   BOOLEAN call_failed=FALSE;
    83168314
    83178315  if (!errorreported)
     
    83578355    }
    83588356
    8359     BOOLEAN failed=FALSE;
    83608357    iiOp=op;
    83618358    int i=iiTabIndex(dArithTab1,JJTAB1LEN,op);
Note: See TracChangeset for help on using the changeset viewer.