summaryrefslogtreecommitdiffhomepage
path: root/include/CompilerKit/CodeGenerator.h
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-12-18 01:57:41 +0100
committerAmlal El Mahrouss <amlal@nekernel.org>2025-12-18 01:57:41 +0100
commit228479a454d325340326f4fd23e13d780884fd2a (patch)
treeee35d5eecde396e674d1a0e11c5372352a49fac4 /include/CompilerKit/CodeGenerator.h
parent80de28e3472613e8f6aa8b2730d56b5307f4fb9a (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.h5
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: