comparison src/FeatureConditioner.cpp @ 180:d1bc89794cd4 tuning-rescale

Build with -Wconversion
author Chris Cannam
date Thu, 19 Feb 2015 16:14:33 +0000
parents cfba9aec7569
children a17b22abd551
comparison
equal deleted inserted replaced
179:9ab52cb6baa3 180:d1bc89794cd4
45 << feature.size() << " differs from previous feature size " 45 << feature.size() << " differs from previous feature size "
46 << m_prev.size() << endl; 46 << m_prev.size() << endl;
47 return feature; 47 return feature;
48 } 48 }
49 49
50 int size = feature.size(); 50 int size = static_cast<int>(feature.size());
51 51
52 vector<double> out(size, 0.0); 52 vector<double> out(size, 0.0);
53 53
54 double totalEnergy = 0; 54 double totalEnergy = 0;
55 55