From a7c0616cd8f2e2f141e0d7233702bb5516c09031 Mon Sep 17 00:00:00 2001 From: ISSOtm Date: Tue, 21 Jan 2020 10:54:16 +0100 Subject: [PATCH] Rename export type enum to that This prevents a conflict in the next commit --- include/link/symbol.h | 2 +- include/linkdefs.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/include/link/symbol.h b/include/link/symbol.h index 3733cdf6..14210f7e 100644 --- a/include/link/symbol.h +++ b/include/link/symbol.h @@ -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; diff --git a/include/linkdefs.h b/include/linkdefs.h index 74665805..e154791e 100644 --- a/include/linkdefs.h +++ b/include/linkdefs.h @@ -59,7 +59,7 @@ enum SectionType { SECTTYPE_INVALID }; -enum SymbolType { +enum ExportLevel { SYMTYPE_LOCAL, SYMTYPE_IMPORT, SYMTYPE_EXPORT