diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-08 20:57:51 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2026-02-08 20:57:51 +0100 |
| commit | 087e9f586691f5f506613aeddebca1e552a59050 (patch) | |
| tree | 23a89cb01cdbb66909fbdc62ba950243b6721049 /src/CompilerKit | |
| parent | 0327883a4af135fdd9d4177116e647c4f397bb81 (diff) | |
feat: Add run option for KDevelop config.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'src/CompilerKit')
| -rw-r--r-- | src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc b/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc index 1a9067b..ce42dd3 100644 --- a/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc +++ b/src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc @@ -26,9 +26,9 @@ Int32 AssemblyFactory::Compile(STLString sourceFile, const Int32& arch) { } ///! @brief mount assembly backend. -void AssemblyFactory::Mount(WeakRef<IAssembly> mountPtr) { - if (mountPtr && !this->fMounted) { - this->fMounted = mountPtr.Leak(); +void AssemblyFactory::Mount(WeakRef<IAssembly> mount_ptr) { + if (mount_ptr && !this->fMounted) { + this->fMounted = mount_ptr.Leak(); } } |
