Rename export type enum to that

This prevents a conflict in the next commit
This commit is contained in:
ISSOtm
2020-01-21 10:54:16 +01:00
parent 51d5ff0567
commit a7c0616cd8
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@
struct Symbol {
/* Info contained in the object files */
char *name;
enum SymbolType type;
enum ExportLevel type;
char const *objFileName;
char *fileName;
int32_t lineNo;

View File

@@ -59,7 +59,7 @@ enum SectionType {
SECTTYPE_INVALID
};
enum SymbolType {
enum ExportLevel {
SYMTYPE_LOCAL,
SYMTYPE_IMPORT,
SYMTYPE_EXPORT