Merge pull request #21474 from elasota/fix-cvtt-scalar

Fix CVTT scalar version not compiling
This commit is contained in:
Rémi Verschelde 2018-08-27 13:36:23 +02:00 committed by GitHub
commit 439e562b1a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1420,6 +1420,16 @@ namespace cvtt
return v;
}
static bool MakeBoolInt16(bool b)
{
return b;
}
static bool MakeBoolFloat(bool b)
{
return b;
}
static bool AndNot(bool a, bool b)
{
return a && !b;