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/Compiler.h | |
| 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/Compiler.h')
| -rw-r--r-- | include/CompilerKit/Utilities/Compiler.h | 2 |
1 files changed, 1 insertions, 1 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; } |
