Changeset 979b4e6 in git for Singular


Ignore:
Timestamp:
Apr 30, 2013, 6:20:01 PM (11 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
552d26572655f537d219086f12ab104e239f7db2
Parents:
b79fd76a535a05f415a6fd8c00ffbff7f2d2a32d
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-04-30 18:20:01+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2013-05-03 11:54:07+02:00
Message:
fix: compiler warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/subexpr.cc

    rb79fd7 r979b4e6  
    10661066        return  ((idhdl)h->data.ustring)->data.ustring;
    10671067      }
    1068       case VECHO:      return (void *)si_echo;
    1069       case VPRINTLEVEL:return (void *)printlevel;
    1070       case VCOLMAX:    return (void *)colmax;
    1071       case VTIMER:     return (void *)getTimer();
    1072       case VRTIMER:    return (void *)getRTimer();
    1073       case VOICE:      return (void *)(myynest+1);
    1074       case VMAXDEG:    return (void *)Kstd1_deg;
    1075       case VMAXMULT:   return (void *)Kstd1_mu;
    1076       case TRACE:      return (void *)traceit;
    1077       case VSHORTOUT:  return (void *)(currRing != NULL ? currRing->ShortOut : 0);
     1068      case VECHO:      return (void *)(long)si_echo;
     1069      case VPRINTLEVEL:return (void *)(long)printlevel;
     1070      case VCOLMAX:    return (void *)(long)colmax;
     1071      case VTIMER:     return (void *)(long)getTimer();
     1072      case VRTIMER:    return (void *)(long)getRTimer();
     1073      case VOICE:      return (void *)(long)(myynest+1);
     1074      case VMAXDEG:    return (void *)(long)Kstd1_deg;
     1075      case VMAXMULT:   return (void *)(long)Kstd1_mu;
     1076      case TRACE:      return (void *)(long)traceit;
     1077      case VSHORTOUT:  return (void *)(long)(currRing != NULL ? currRing->ShortOut : 0);
    10781078      case VMINPOLY:
    10791079        if ( (currRing != NULL)  && nCoeff_is_algExt(currRing->cf) && !nCoeff_is_GF(currRing->cf))
Note: See TracChangeset for help on using the changeset viewer.