Changeset 805db88 in git for kernel/fast_maps.cc


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
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/fast_maps.cc

    rb5f27dd r805db88  
    469469        return NULL;
    470470      }
    471       if ((p==NULL) /* && (e>0)*/)
     471      if (/*(*/ p==NULL /*)*/) /* && (e>0)*/
    472472      {
    473473        p=p_Copy(pp /*dest_id[i-1]*/,dest_r);
     
    715715  {
    716716    choice=iter->next;
    717     if ((iter->f1==NULL))
     717    if ( /*(*/ iter->f1==NULL /*)*/ )
    718718    {
    719719      ggT=maFindBestggT(iter, choice, fp, fq,src_r);
Note: See TracChangeset for help on using the changeset viewer.