lcfiplus / LCFIPlus

Flavor tagging code for ILC detectors
https://confluence.slac.stanford.edu/display/ilc/LCFIPlus
GNU General Public License v3.0
6 stars 19 forks source link

Error: comparison between pointer and integer #15

Closed petricm closed 7 years ago

petricm commented 7 years ago

In LcfiplusProcessor.cc line 213

if (_lcio == false) return;

compares a pointer lcfiplus::LCIOStorer * to a int, which is an error it should be

if (_lcio == NULL) return;

this breaks compilation on LLVM3.9