diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 07:27:27 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-28 07:27:27 +0100 |
| commit | 2b770125c35f061e0da813dab91f42c96b1ac749 (patch) | |
| tree | f2539f45a472be6f29bee192a42976aed1298a26 /include/CompilerKit/Utilities | |
| parent | 6a84782b5c574b7742f8fca7023556a8e4bce535 (diff) | |
chore: wip: including TProc and Boost for Nectar compiler frontend.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/Utilities')
| -rw-r--r-- | include/CompilerKit/Utilities/Compiler.h | 2 | ||||
| -rw-r--r-- | include/CompilerKit/Utilities/DLL.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/CompilerKit/Utilities/Compiler.h b/include/CompilerKit/Utilities/Compiler.h index ca577db..42fc977 100644 --- a/include/CompilerKit/Utilities/Compiler.h +++ b/include/CompilerKit/Utilities/Compiler.h @@ -41,7 +41,7 @@ inline static bool kNasmOutput = false; namespace CompilerKit::Detail { /// @brief Blob structure struct Blob final { - std::vector<Char> 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... explicit operator bool() { return mBlob.empty() && mOffset > 0UL; } diff --git a/include/CompilerKit/Utilities/DLL.h b/include/CompilerKit/Utilities/DLL.h index 26eacea..36c511a 100644 --- a/include/CompilerKit/Utilities/DLL.h +++ b/include/CompilerKit/Utilities/DLL.h @@ -16,7 +16,7 @@ namespace CompilerKit { #ifdef CK_POSIX class ModuleLoader final { public: - using EntryT = Int32 (*)(Int32 argc, Char const* argv[]); + using EntryT = Int32 (*)(Int32 argc, char const* argv[]); using HandleT = VoidPtr; using MutexT = std::mutex; |
