diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-18 01:57:41 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-18 01:57:41 +0100 |
| commit | 228479a454d325340326f4fd23e13d780884fd2a (patch) | |
| tree | ee35d5eecde396e674d1a0e11c5372352a49fac4 /include/CompilerKit/CodeGenerator.h | |
| parent | 80de28e3472613e8f6aa8b2730d56b5307f4fb9a (diff) | |
chore & feat: New DLLLoader API and AST API improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'include/CompilerKit/CodeGenerator.h')
| -rw-r--r-- | include/CompilerKit/CodeGenerator.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/CompilerKit/CodeGenerator.h b/include/CompilerKit/CodeGenerator.h index f2875bf..8bee7b5 100644 --- a/include/CompilerKit/CodeGenerator.h +++ b/include/CompilerKit/CodeGenerator.h @@ -44,9 +44,8 @@ class AssemblyFactory final { kArchCount = kArchUnknown - kArchAMD64, }; - Int32 Compile(STLString sourceFile, const Int32& arch) noexcept; - - void Mount(WeakRef<IAssembly> mountPtr) noexcept; + Int32 Compile(STLString sourceFile, const Int32& arch); + void Mount(WeakRef<IAssembly> mountPtr); WeakRef<IAssembly> Unmount() noexcept; private: |
