Changeset 805db88 in git for libpolys


Ignore:
Timestamp:
Nov 14, 2013, 7:57:20 PM (10 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
4b5171ff486c46e0d3f30c8810fc2bb7ebd00157
Parents:
b5f27dd8b00738efde14a72f129d4b6173d951f4
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-11-14 19:57:20+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-11-15 14:58:04+01:00
Message:
Avoid "if ((P)) " since clang treats such statements specially
Location:
libpolys
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/modulop.cc

    rb5f27dd r805db88  
    539539                               % r->ch);
    540540          r->npLogTable[r->npExpTable[i]] = i;
    541           if (/*(i == r->ch - 1 ) ||*/ (r->npExpTable[i] == 1))
     541          if /*(i == r->ch - 1 ) ||*/ (/*(*/ r->npExpTable[i] == 1 /*)*/)
    542542            break;
    543543        }
  • libpolys/polys/ext_fields/transext.cc

    rb5f27dd r805db88  
    15141514void ntNormalize (number &a, const coeffs cf)
    15151515{
    1516   if ((a!=NULL))
     1516  if ( /*(*/ a!=NULL /*)*/ )
    15171517  {
    15181518    definiteGcdCancellation(a, cf, FALSE);
  • libpolys/polys/nc/sca.cc

    rb5f27dd r805db88  
    477477#endif
    478478
    479   if( ( pPoly == NULL ) /*|| ( pMonom == NULL )*/ )
     479  if (/*(*/  pPoly == NULL  /*)*/) /*|| ( pMonom == NULL )*/
    480480    return NULL;
    481481
Note: See TracChangeset for help on using the changeset viewer.