Changeset 2e4ec14 in git for dyn_modules


Ignore:
Timestamp:
Feb 21, 2013, 12:31:21 AM (11 years ago)
Author:
Yue Ren <ren@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
cd4f243f3aafc7080a52fa973f2d90493e4847f2
Parents:
6909cfb17ff34ff746782e3cb8cdb891e03521dd
git-author:
Yue Ren <ren@mathematik.uni-kl.de>2013-02-21 00:31:21+01:00
git-committer:
Yue Ren <ren@mathematik.uni-kl.de>2013-02-21 20:00:58+01:00
Message:
fix: -Wunused-parameter warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/bigintm/bigintm.cc

    r6909cfb r2e4ec14  
    3030
    3131#ifdef HAVE_BIGINTM
    32 static char * bigintm_String(blackbox *b, void *d)
     32static char * bigintm_String(blackbox */*b*/, void *d)
    3333{ if (d==NULL) return omStrDup("oo");
    3434   else
     
    3939    }
    4040}
    41 static void * bigintm_Copy(blackbox*b, void *d)
     41static void * bigintm_Copy(blackbox*/*b*/, void *d)
    4242{  number n=(number)d; return n_Copy(n, coeffs_BIGINT); }
    4343
     
    287287}
    288288
    289 static void bigintm_destroy(blackbox *b, void *d)
     289static void bigintm_destroy(blackbox */*b*/, void *d)
    290290{
    291291  if (d!=NULL)
Note: See TracChangeset for help on using the changeset viewer.