[Bf-blender-cvs] [dec5472] object_nodes: Disabled some unused function args.

Lukas Tönne noreply at git.blender.org
Tue Nov 24 09:44:13 CET 2015


Commit: dec547234927119cfaa8c385e50608277d7b6fa5
Author: Lukas Tönne
Date:   Sun Nov 8 12:20:26 2015 +0100
Branches: object_nodes
https://developer.blender.org/rBdec547234927119cfaa8c385e50608277d7b6fa5

Disabled some unused function args.

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

M	source/blender/blenvm/compile/bvm_nodegraph.h
M	source/blender/blenvm/intern/bvm_api.cc

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

diff --git a/source/blender/blenvm/compile/bvm_nodegraph.h b/source/blender/blenvm/compile/bvm_nodegraph.h
index 73f39a9..6cbcb79 100644
--- a/source/blender/blenvm/compile/bvm_nodegraph.h
+++ b/source/blender/blenvm/compile/bvm_nodegraph.h
@@ -396,13 +396,13 @@ protected:
 		return result;
 	}
 	
-	SocketPair add_int_converter(const SocketPair &from, BVMType to_type)
+	SocketPair add_int_converter(const SocketPair &/*from*/, BVMType /*to_type*/)
 	{
 		SocketPair result(NULL, "");
 		return result;
 	}
 	
-	SocketPair add_matrix44_converter(const SocketPair &from, BVMType to_type)
+	SocketPair add_matrix44_converter(const SocketPair &/*from*/, BVMType /*to_type*/)
 	{
 		SocketPair result(NULL, "");
 		return result;
diff --git a/source/blender/blenvm/intern/bvm_api.cc b/source/blender/blenvm/intern/bvm_api.cc
index efd9c69..dabbd50 100644
--- a/source/blender/blenvm/intern/bvm_api.cc
+++ b/source/blender/blenvm/intern/bvm_api.cc
@@ -734,7 +734,7 @@ static void parse_tex_nodes(CompileContext */*_context*/, bNodeTree *btree, bvm:
 }
 
 
-struct BVMExpression *BVM_gen_texture_expression(const struct BVMEvalGlobals *globals, struct Tex *tex,
+struct BVMExpression *BVM_gen_texture_expression(const struct BVMEvalGlobals *globals, struct Tex */*tex*/,
                                                  bNodeTree *btree, FILE *debug_file)
 {
 	using namespace bvm;




More information about the Bf-blender-cvs mailing list