Atozed Forums

Full Version: Order of IWRtlFix Unit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can you please tell me which would be the correct order?   Should FastMM4 come before IWRtlFix or After it?

uses
  FastMM4,
  IWRtlFix,



or 


uses
  IWRtlFix,
  FastMM4,
I use

Code:
uses
  FastMM4,
  IWRtlFix


The Intraweb app wizard also creates the units in this order.

Code:
uses
  FastMM4,
  IWRtlFix,
  IWJclStackTrace,
  IWJclDebug,
  IWStart,
  Unit1 in 'Unit1.pas' {IWForm1: TIWAppForm},
  ServerController in 'ServerController.pas' {IWServerController: TIWServerControllerBase},
  UserSessionUnit in 'UserSessionUnit.pas' {IWUserSession: TIWUserSessionBase};