Changeset 8bf51f in git


Ignore:
Timestamp:
Mar 3, 2021, 7:48:39 PM (3 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
9af51a976e57f669212b1cc848f8f8876841e2e2
Parents:
31c6e9123b279b3c1d4b88510d92a7018b57fbb2
Message:
compiler warnings
Location:
libpolys/coeffs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/rmodulon.cc

    r31c6e9 r8bf51f  
    3333EXTERN_VAR omBin gmp_nrz_bin;
    3434
    35 coeffs nrnInitCfByName(char *s,n_coeffType n)
     35coeffs nrnInitCfByName(char *s,n_coeffType)
    3636{
    3737  const char start[]="ZZ/bigint(";
     
    5252    {
    5353      s=s+2;
    54       s=nEati(s,&(info.exp),0);
     54      int i;
     55      s=nEati(s,&i,0);
     56      info.exp=(unsigned long)i;
    5557      return nInitChar(n_Znm,(void*) &info);
    5658    }
  • libpolys/coeffs/rmodulon.h

    r31c6e9 r8bf51f  
    1616#include "coeffs/rintegers.h"
    1717
    18 typedef struct { mpz_ptr base;  int exp; } ZnmInfo;
     18typedef struct { mpz_ptr base; unsigned long exp; } ZnmInfo;
    1919
    2020BOOLEAN nrnInitChar    (coeffs r, void*);
Note: See TracChangeset for help on using the changeset viewer.