Displaying 1 result from an estimated 1 matches for "arrmask".
Did you mean:
armasm
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 development server 'zin1' Linux (Ubuntu 12.04.4 LTS)
I get suddenly the following warning message:...