Browse Source

fpc compatibility

Unknown 5 years ago
parent
commit
b271335238
1 changed files with 5 additions and 1 deletions
  1. 5 1
      Quick.Logger.Intf.pas

+ 5 - 1
Quick.Logger.Intf.pas

@@ -7,7 +7,7 @@
   Author      : Kike Pérez
   Author      : Kike Pérez
   Version     : 1.8
   Version     : 1.8
   Created     : 30/08/2019
   Created     : 30/08/2019
-  Modified    : 31/08/2019
+  Modified    : 11/09/2019
 
 
   This file is part of QuickLib: https://github.com/exilon/QuickLib
   This file is part of QuickLib: https://github.com/exilon/QuickLib
 
 
@@ -34,7 +34,11 @@ unit Quick.Logger.Intf;
 interface
 interface
 
 
 uses
 uses
+  {$IFNDEF FPC}
   System.SysUtils;
   System.SysUtils;
+  {$ELSE}
+  SysUtils;
+  {$ENDIF}
 
 
 type
 type
   ILogger = interface
   ILogger = interface