Skip to content

Commit

Permalink
Remove 'type mismatch' error until I can work out what is wrong
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugh Sanderson committed Dec 6, 2020
1 parent f4f68ee commit f228dc3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/hx/cppia/CppiaCompiler.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -735,8 +735,9 @@ class CppiaJitCompiler : public CppiaCompiler
if (inV1.type==jtInt && (inV2.type==jtByte || inV2.type==jtShort))
return inV1.type;

if (inV1.type!=inV2.type)
setError("Type mismatch");
// TODO
//if (inV1.type!=inV2.type)
// setError("Type mismatch");
return inV1.type;
}

Expand Down

0 comments on commit f228dc3

Please sign in to comment.