In the file core/ibpp.h the line (about line 98)
const uint32_t Version = (3<<24) + (0<<16) + (0<8) + 0; // Version == 3.0.0.0
should be:
const uint32_t Version = (3<<24) + (0<<16) + (0<<8) + 0; // Version == 3.0.0.0
Luca
Log in to post a comment.