1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

pass the PE object in the constructor.

This commit is contained in:
Alain Magloire 2003-10-19 05:27:37 +00:00
parent b1b47c294e
commit e243c06ee9

View file

@ -29,7 +29,7 @@ public class ARMember extends BinaryObject {
PEArchive.ARHeader header; PEArchive.ARHeader header;
public ARMember(IPath p, PEArchive.ARHeader h) throws IOException { public ARMember(IPath p, PEArchive.ARHeader h) throws IOException {
super(p); super(p, h.getPE());
header = h; header = h;
} }