error C2668: ‘fabs’ : ambiguous call to overloaded function
const int diff = std::fabs (qualities[i].getIntValue() - approxBitsPerSecond);
looks better w/ std::abs
Todays source, windows x64
error C2668: ‘fabs’ : ambiguous call to overloaded function
const int diff = std::fabs (qualities[i].getIntValue() - approxBitsPerSecond);
looks better w/ std::abs
Todays source, windows x64
Thanks, yes… fixed now.