Changeset e22d4f in git


Ignore:
Timestamp:
Jun 29, 2021, 2:30:48 PM (3 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
de66635cb4e52adc36d928f7bd9e54afe93ad699
Parents:
3f2486bd6cf447242cb3181ef7188859e30f15e05f15ced9c99b1e7488c1598485ac3a0fc0ca4c33
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2021-06-29 14:30:48+02:00
git-committer:
GitHub <noreply@github.com>2021-06-29 14:30:48+02:00
Message:
Merge pull request #1104 from alois31/spielwiese

Always return a value in functions with non-void return type
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/dyn_modules/cohomo/cohomo.cc

    r3f2486b re22d4f  
    39443944  }
    39453945  WerrorS("Cannot find the links smartly!");
     3946  return {};
    39463947}
    39473948
  • libpolys/coeffs/flintcf_Zn.cc

    r3f2486b re22d4f  
    345345{
    346346  WerrorS("not yet: Lcm");
     347  return NULL;
    347348}
    348349static void Delete(number * a, const coeffs r)
     
    389390{
    390391  WerrorS("not yet: Farey");
     392  return NULL;
    391393}
    392394static number ChineseRemainder(number *x, number *q,int rl, BOOLEAN sym,CFArray &inv_cache,const coeffs)
    393395{
    394396  WerrorS("not yet: ChineseRemainder");
     397  return NULL;
    395398}
    396399static int ParDeg(number x,const coeffs r)
     
    409412static number ConvFactoryNSingN( const CanonicalForm n, const coeffs r)
    410413{
     414  WerrorS("not yet: ConvFactoryNSingN");
     415  return NULL;
    411416}
    412417static CanonicalForm ConvSingNFactoryN( number n, BOOLEAN setChar, const coeffs r )
    413418{
    414419  WerrorS("not yet: ConvSingNFactoryN");
     420  return NULL;
    415421}
    416422static char * CoeffName(const coeffs r)
Note: See TracChangeset for help on using the changeset viewer.