From 2b770125c35f061e0da813dab91f42c96b1ac749 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sat, 28 Feb 2026 07:27:27 +0100 Subject: chore: wip: including TProc and Boost for Nectar compiler frontend. Signed-off-by: Amlal El Mahrouss --- include/CompilerKit/Utilities/Compiler.h | 2 +- include/CompilerKit/Utilities/DLL.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include/CompilerKit/Utilities') 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 mBlob{}; // PEF code/bss/data blob. + std::vector 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; -- cgit v1.2.3