comparison vamp-sdk/PluginBase.h @ 377:e43186ff8854

Fix some uninitialised members that Coverity otherwise complains about
author Chris Cannam
date Wed, 03 Sep 2014 12:14:39 +0100
parents d5c5a52e6c9f
children
comparison
equal deleted inserted replaced
376:5ad35dc275c2 377:e43186ff8854
191 * encoded in the names. 191 * encoded in the names.
192 */ 192 */
193 std::vector<std::string> valueNames; 193 std::vector<std::string> valueNames;
194 194
195 ParameterDescriptor() : // the defaults are invalid: you must set them 195 ParameterDescriptor() : // the defaults are invalid: you must set them
196 minValue(0), maxValue(0), defaultValue(0), isQuantized(false) { } 196 minValue(0),
197 maxValue(0),
198 defaultValue(0),
199 isQuantized(false),
200 quantizeStep(0) { }
197 }; 201 };
198 202
199 typedef std::vector<ParameterDescriptor> ParameterList; 203 typedef std::vector<ParameterDescriptor> ParameterList;
200 204
201 /** 205 /**