Commit 0fe3bda9 by elasota

Fix CVTT scalar version not compiling

parent f72f7448
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment