[Bf-blender-cvs] [4a502bef3c3] functions: fix

Jacques Lucke noreply at git.blender.org
Fri Mar 1 13:42:17 CET 2019


Commit: 4a502bef3c3285248857000c021321f279abeb60
Author: Jacques Lucke
Date:   Fri Mar 1 13:40:51 2019 +0100
Branches: functions
https://developer.blender.org/rB4a502bef3c3285248857000c021321f279abeb60

fix

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

M	source/blender/blenlib/BLI_shared.hpp

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

diff --git a/source/blender/blenlib/BLI_shared.hpp b/source/blender/blenlib/BLI_shared.hpp
index c7c0355d65b..fb477aea1b6 100644
--- a/source/blender/blenlib/BLI_shared.hpp
+++ b/source/blender/blenlib/BLI_shared.hpp
@@ -95,7 +95,7 @@ namespace BLI {
 
 		Shared &operator=(const Shared &other)
 		{
-			if (m_object == other->m_object) {
+			if (m_object == other.m_object) {
 				return *this;
 			}



More information about the Bf-blender-cvs mailing list