1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-06-08 18:26:01 +02:00

Check for the core type.

This commit is contained in:
Alain Magloire 2002-11-22 16:32:00 +00:00
parent 81a37c9668
commit 3b64f661db

View file

@ -226,6 +226,10 @@ public class ElfBinaryFile extends PlatformObject implements IBinaryFile,
case Attribute.ELF_TYPE_OBJ:
type = IBinaryFile.OBJECT;
break;
case Attribute.ELF_TYPE_CORE:
type = IBinaryFile.CORE;
break;
}
}
return type;