aboutsummaryrefslogtreecommitdiff
path: root/src/core/ITensor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/ITensor.cpp')
-rw-r--r--src/core/ITensor.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ITensor.cpp b/src/core/ITensor.cpp
index e6c80e8879..7cf04b51c4 100644
--- a/src/core/ITensor.cpp
+++ b/src/core/ITensor.cpp
@@ -64,7 +64,7 @@ void ITensor::copy_from(const ITensor &src)
const size_t line_size = src_info->element_size() * src_info->dimension(0);
- execute_window_loop(win_src, [&](const Coordinates & id)
+ execute_window_loop(win_src, [&](const Coordinates &)
{
memcpy(dst_it.ptr(), src_it.ptr(), line_size);
},