Skip to content

Commit

Permalink
Fix CVTT scalar version not compiling
Browse files Browse the repository at this point in the history
  • Loading branch information
elasota committed Aug 27, 2018
1 parent f72f744 commit 0fe3bda
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions thirdparty/cvtt/ConvectionKernels.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 0fe3bda

Please sign in to comment.