Skip to content

Commit

Permalink
Fix Linux compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoduarte19 committed Apr 17, 2024
1 parent 0816f12 commit eba712e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sources/MVCFramework.RQL.Parser.pas
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ procedure TRQL2SQL.Error(const Message: string);
end;
if lMsg.Trim.IsEmpty then
lMsg := '<EOF>';
raise ERQLException.CreateFmt('[Error] %s (column %d - found %s)', [message, fCurIdx, lMsg]) at AddressOfReturnAddress;
raise ERQLException.CreateFmt('[Error] %s (column %d - found %s)', [message, fCurIdx, lMsg]){$IF DEFINED(MSWINDOWS)} at AddressOfReturnAddress{$ENDIF};
end;

procedure TRQL2SQL.Execute(
Expand Down

0 comments on commit eba712e

Please sign in to comment.