[Bf-blender-cvs] [4a763e1] master: Compositor; Explicitly specify inline function

Sergey Sharybin noreply at git.blender.org
Mon Oct 6 18:16:03 CEST 2014


Commit: 4a763e1c68e9a1fe8f50111955c1cd556cc03a94
Author: Sergey Sharybin
Date:   Mon Oct 6 22:15:35 2014 +0600
Branches: master
https://developer.blender.org/rB4a763e1c68e9a1fe8f50111955c1cd556cc03a94

Compositor; Explicitly specify inline function

===================================================================

M	source/blender/compositor/operations/COM_MixOperation.h

===================================================================

diff --git a/source/blender/compositor/operations/COM_MixOperation.h b/source/blender/compositor/operations/COM_MixOperation.h
index 479ce16..d399edb 100644
--- a/source/blender/compositor/operations/COM_MixOperation.h
+++ b/source/blender/compositor/operations/COM_MixOperation.h
@@ -76,7 +76,7 @@ public:
 
 	
 	void setUseValueAlphaMultiply(const bool value) { this->m_valueAlphaMultiply = value; }
-	bool useValueAlphaMultiply() { return this->m_valueAlphaMultiply; }
+	inline bool useValueAlphaMultiply() { return this->m_valueAlphaMultiply; }
 	void setUseClamp(bool value) { this->m_useClamp = value; }
 };




More information about the Bf-blender-cvs mailing list