1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-06 09:16:02 +02:00

pass the Elf object in the constructor.

This commit is contained in:
Alain Magloire 2003-10-19 05:28:04 +00:00
parent e243c06ee9
commit 08d608864c

View file

@ -27,7 +27,7 @@ public class ARMember extends BinaryObject {
AR.ARHeader header;
public ARMember(IPath p, AR.ARHeader h) throws IOException {
super(p);
super(p, new ElfHelper(h.getElf()));
header = h;
}