ソースを参照

Fix warnings (unused variables).

Cyril Roelandt 13 年 前
コミット
78c1624488
共有1 個のファイルを変更した4 個の追加0 個の削除を含む
  1. 4 0
      src/datawizard/interfaces/multiformat_interface.c

+ 4 - 0
src/datawizard/interfaces/multiformat_interface.c

@@ -703,6 +703,10 @@ static int copy_opencl_to_ram(void *src_interface, unsigned src_node STARPU_ATTR
 static int copy_opencl_to_opencl(void *src_interface, unsigned src_node,
                                  void *dst_interface, unsigned dst_node)
 {
+	(void) src_interface;
+	(void) dst_interface;
+	(void) src_node;
+	(void) dst_node;
 /* TODO */
 	return 0;
 }