Skip to content

Commit

Permalink
refactor: Moved unit to Implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Mar 5, 2024
1 parent 883e224 commit 17d3dc1
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions generator/Common/generate.common.pas
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@
interface

uses
Classes, SysUtils, Math
{$IFDEF FPC}
, streamex, bufstream
{$ELSE}
, System.Diagnostics
{$ENDIF}
;
Classes
, SysUtils
;

type

Expand Down Expand Up @@ -45,6 +41,16 @@ TGenerator = class(TObject)

implementation

uses
Math
{$IFDEF FPC}
, streamex
, bufstream
{$ELSE}
, System.Diagnostics
{$ENDIF}
;

const
cSeed: LongInt = 46668267; // '1BRC' in ASCII
linesPercent = 10;
Expand Down

0 comments on commit 17d3dc1

Please sign in to comment.