diff options
author | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2016-01-22 15:26:30 +0000 |
---|---|---|
committer | svenbarth <svenbarth@3ad0048d-3df7-0310-abae-a5850022a9f2> | 2016-01-22 15:26:30 +0000 |
commit | 2757a7209619099a44927125a762b1c0d71488af (patch) | |
tree | e5d0e94da5c38fb5495e0d3e8c551a47b6e37dd8 /compiler/wpoinfo.pas | |
parent | ef5f0badfa8b31cd1be6a566bab6fa2ecc97b5b5 (diff) | |
download | fpc-2757a7209619099a44927125a762b1c0d71488af.tar.gz |
Merged revision(s) 28689 from branches/svenbarth/packages:
Extract functionality that is shared between the metadata files for units (PPU) and for packages (PCP) into a parent class called tentryfile
+ add new unit entfile which contains the new tentryfile class and related types and constants
* ppu.pas:
- remove methods, fields, types and constants which were moved to entfile.pas
* replace the parts of tppuheader shared with tentryheader by a field of type tentryheader
fppu.pas, pmodules.pas, utils/ppumove.pp, utils/ppuutils/ppudump.pp:
+ add entfile to uses
* adjust access to common header fields
node.pas, symdef.pas, symsym.pas, symtable.pas, wpoinfo.pas, utils/ppufiles.pp:
+ add entfile to uses
........
git-svn-id: http://svn.freepascal.org/svn/fpc/trunk@32976 3ad0048d-3df7-0310-abae-a5850022a9f2
Diffstat (limited to 'compiler/wpoinfo.pas')
-rw-r--r-- | compiler/wpoinfo.pas | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/wpoinfo.pas b/compiler/wpoinfo.pas index 72a9677016..627327362f 100644 --- a/compiler/wpoinfo.pas +++ b/compiler/wpoinfo.pas @@ -73,7 +73,8 @@ implementation uses globals, symdef, - verbose; + verbose, + entfile; procedure tunitwpoinfo.clearderefinfo; begin |