From 087e9f586691f5f506613aeddebca1e552a59050 Mon Sep 17 00:00:00 2001 From: Amlal El Mahrouss Date: Sun, 8 Feb 2026 20:57:51 +0100 Subject: feat: Add run option for KDevelop config. Signed-off-by: Amlal El Mahrouss --- src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/CompilerKit') 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 mountPtr) { - if (mountPtr && !this->fMounted) { - this->fMounted = mountPtr.Leak(); +void AssemblyFactory::Mount(WeakRef mount_ptr) { + if (mount_ptr && !this->fMounted) { + this->fMounted = mount_ptr.Leak(); } } -- cgit v1.2.3