diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-28 18:12:17 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-05-28 18:12:17 +0200 |
| commit | d37f1a7381825d414e4b71c487eea509325f24c3 (patch) | |
| tree | b8df54b1da6a152e6f9a61b91b8feac90bdef4b9 /dev/LibCompiler/src/Linkers | |
| parent | 26b2f0395db53b0bbb1915cd27ac2b99a4dbb0a2 (diff) | |
refactor: Refactor toolchain source code.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'dev/LibCompiler/src/Linkers')
| -rw-r--r-- | dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc index 820b06d..b58c786 100644 --- a/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc +++ b/dev/LibCompiler/src/Linkers/DynamicLinkerPEF.cc @@ -68,7 +68,7 @@ namespace Detail { struct DynamicLinkerBlob final { - std::vector<CharType> mBlob{}; // PEF code/bss/data blob. + std::vector<Char> mBlob{}; // PEF code/bss/data blob. UIntPtr mOffset{0UL}; // the offset of the PEF container header... }; } // namespace Detail @@ -89,8 +89,8 @@ static Bool kStartFound = false; static Bool kDuplicateSymbols = false; /* ld64 is to be found, mld is to be found at runtime. */ -static const CharType* kLdDefineSymbol = ":UndefinedSymbol:"; -static const CharType* kLdDynamicSym = ":RuntimeSymbol:"; +static const Char* kLdDefineSymbol = ":UndefinedSymbol:"; +static const Char* kLdDynamicSym = ":RuntimeSymbol:"; /* object code and list. */ static std::vector<LibCompiler::STLString> kObjectList; |
