You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Building the latest git code on macOS 12, I get these warnings:
include/vpb/Source:595:43: warning: absolute value function 'fabsf' given an argument of type 'double' but has parameter of type 'float' which may cause truncation of value [-Wabsolute-value]
float closestResolution = fabsf(composite._sourceList[0]->getSortValue()-_targetResolution);
^
include/vpb/Source:595:43: note: use function 'std::abs' instead
float closestResolution = fabsf(composite._sourceList[0]->getSortValue()-_targetResolution);
^~~~~
std::abs
include/vpb/Source:598:35: warning: absolute value function 'fabsf' given an argument of type 'double' but has parameter of type 'float' which may cause truncation of value [-Wabsolute-value]
float delta = fabsf(composite._sourceList[i]->getSortValue()-_targetResolution);
^
include/vpb/Source:598:35: note: use function 'std::abs' instead
float delta = fabsf(composite._sourceList[i]->getSortValue()-_targetResolution);
^~~~~
std::abs
The text was updated successfully, but these errors were encountered:
Building the latest git code on macOS 12, I get these warnings:
The text was updated successfully, but these errors were encountered: