Changeset f5e732 in git


Ignore:
Timestamp:
Aug 26, 2016, 6:46:40 PM (8 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '52dcfddee5ec87d404d5e0fb44f2d627608208f1')
Children:
117ae9c7dde9eb9fcaa4cb899cfb7690addd6dfe
Parents:
6e28802f29d0fee351ccab022adc6853e46bd3fe
Message:
compiler warnings
Location:
libpolys/coeffs
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/longrat.cc

    r6e28802 rf5e732  
    949949}
    950950
    951 number  nlGetUnit (number n, const coeffs r)
     951number  nlGetUnit (number, const coeffs)
    952952{
    953953  return INT_TO_SR(1);
     
    14211421// Map q \in QQ or ZZ \to Zp or an extension of it
    14221422// src = Q or Z, dst = Zp (or an extension of Zp)
    1423 number nlModP(number q, const coeffs Q, const coeffs Zp)
     1423number nlModP(number q, const coeffs /*Q*/, const coeffs Zp)
    14241424{
    14251425  const int p = n_GetChar(Zp);
     
    22942294* copy a to b for mapping
    22952295*/
    2296 number nlCopyMap(number a, const coeffs src, const coeffs dst)
     2296number nlCopyMap(number a, const coeffs /*src*/, const coeffs /*dst*/)
    22972297{
    22982298  if ((SR_HDL(a) & SR_INT)||(a==NULL))
     
    23032303}
    23042304
    2305 nMapFunc nlSetMap(const coeffs src, const coeffs dst)
     2305nMapFunc nlSetMap(const coeffs src, const coeffs /*dst*/)
    23062306{
    23072307  if (src->rep==n_rep_gap_rat)  /*Q, coeffs_BIGINT */
  • libpolys/coeffs/modulop.cc

    r6e28802 rf5e732  
    480480}
    481481
    482 static void npWriteFd(number n, FILE* f, const coeffs r)
     482static void npWriteFd(number n, FILE* f, const coeffs)
    483483{
    484484  fprintf(f,"%d ",(int)(long)n);
    485485}
    486486
    487 static number npReadFd(s_buff f, const coeffs r)
     487static number npReadFd(s_buff f, const coeffs)
    488488{
    489489  // read int
Note: See TracChangeset for help on using the changeset viewer.