Displaying 1 result from an estimated 1 matches for "numsel".
Did you mean:
  numsol
  
2014 Jun 23
1
operation on ‘numsels’ may be undefined
Dear all,
Since many years the following C++ code does compile on ALL Bioconductor 
servers (Linux, Windows, Mac) without any warnings:
    Int_t numsels = 0;  //number of selected entries
    ...
    for (Int_t i=0; i<size; i++) {
       numsels = (arrMask[i] == 1) ? ++numsels : numsels;
    }//for_i
Even on the recently added release server 'zin2' Linux (Ubuntu 12.04.4 
LTS) the above code compiles w/o warnings.
However, on the new d...