says built successfully, but get this:
error occurs even if “use MSBuild chain” instead of ebuild option checked.
says built successfully, but get this:
error occurs even if “use MSBuild chain” instead of ebuild option checked.
can I get the exact project that shows this. it looks like there’s a FixIt that fails to apply for some reason.
The error occurred after completion of the build when there was an input parameter referenced with a case mismatch error in its usage. A warning is generated and the error shown below occurs. Notice the mismatched case ‘theLinein’ below. When this is present the error occurs, when corrected it does not.
method InvisiTerm.MyBuildNavTempFromTE(rowTE:Integer;theLineIn:String):String;
...
if (fpMsgMode and not FPMsgRawMode) and
(tokenStart < 80) and (theLinein[tokenStart+1] = #251) then begin
theToken := theLineIn[tokenStart];
delete(var theLineIn,1,tokenStart+1);
isKey := True;
exit;
end;
Yep. The error is real, somehow the “auto-fix-it” data is bad and applying it breaks. Can I get the exact project (our alt least source file) to help me reproduce this? Workaround for you is ofc to just manually fix the error in the code.