Fix CVTT scalar version not compiling

This commit is contained in:
elasota 2018-08-27 04:15:52 -04:00
parent f72f74486d
commit 0fe3bda9af

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;