comparison plugin/FeatureExtractionPluginFactory.cpp @ 73:e9b8b51f6326

* fix compile warnings and genuine int/size_t overflow
author Chris Cannam
date Thu, 06 Apr 2006 17:24:13 +0000
parents e32c6a6cb40f
children c983dda79f72
comparison
equal deleted inserted replaced
72:9bbc57e8bf43 73:e9b8b51f6326
265 if (!rv) { 265 if (!rv) {
266 if (DLCLOSE(libraryHandle) != 0) { 266 if (DLCLOSE(libraryHandle) != 0) {
267 std::cerr << "WARNING: FeatureExtractionPluginFactory::instantiatePlugin: Failed to unload library " << soname.toStdString() << std::endl; 267 std::cerr << "WARNING: FeatureExtractionPluginFactory::instantiatePlugin: Failed to unload library " << soname.toStdString() << std::endl;
268 } 268 }
269 } 269 }
270
271 // std::cerr << "FeatureExtractionPluginFactory::instantiatePlugin: Instantiated plugin " << label.toStdString() << " from library " << soname.toStdString() << ": descriptor " << descriptor << ", rv "<< rv << ", label " << rv->getName() << ", outputs " << rv->getOutputDescriptors().size() << std::endl;
272
270 return rv; 273 return rv;
271 } 274 }
272 275