summaryrefslogtreecommitdiffhomepage
path: root/src/CompilerKit
diff options
context:
space:
mode:
Diffstat (limited to 'src/CompilerKit')
-rw-r--r--src/CompilerKit/src/CodeGenerator+AssemblyFactory.cc6
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();
}
}