[Bf-blender-cvs] [520d7cd6633] functions: better naming

Jacques Lucke noreply at git.blender.org
Sun Feb 10 20:24:56 CET 2019


Commit: 520d7cd6633af556badc1fad8edd0d06f0f7a192
Author: Jacques Lucke
Date:   Tue Jan 22 16:45:36 2019 +0100
Branches: functions
https://developer.blender.org/rB520d7cd6633af556badc1fad8edd0d06f0f7a192

better naming

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

M	source/blender/functions/FN_functions.h

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

diff --git a/source/blender/functions/FN_functions.h b/source/blender/functions/FN_functions.h
index 8d5db4c5e00..37908ddc785 100644
--- a/source/blender/functions/FN_functions.h
+++ b/source/blender/functions/FN_functions.h
@@ -7,10 +7,10 @@
 extern "C" {
 #endif
 
-typedef struct Function *FunctionRef;
-typedef struct FnType *FnTypeRef;
-typedef struct FnInputs *FnInputsRef;
-typedef struct FnOutputs *FnOutputsRef;
+typedef struct OpaqueFunction *FunctionRef;
+typedef struct OpaqueFnType *FnTypeRef;
+typedef struct OpaqueFnInputs *FnInputsRef;
+typedef struct OpaqueFnOutputs *FnOutputsRef;
 
 /* Split ownership of the function. */
 void FN_function_copy_ref(FunctionRef fn);



More information about the Bf-blender-cvs mailing list