Bug 1241394 - Follow up to fix windows build bustage.

This commit is contained in:
Matt Woodrow 2016-01-25 13:58:38 +13:00
parent 3e928004ef
commit 8d74218925

View File

@ -1856,7 +1856,7 @@ struct FramesWithDepth
{} {}
bool operator<(const FramesWithDepth& aOther) const { bool operator<(const FramesWithDepth& aOther) const {
if (!FuzzyEqual(mDepth,aOther.mDepth, 0.1)) { if (!FuzzyEqual(mDepth, aOther.mDepth, 0.1f)) {
// We want to sort so that the shallowest item (highest depth value) is first // We want to sort so that the shallowest item (highest depth value) is first
return mDepth > aOther.mDepth; return mDepth > aOther.mDepth;
} }