Skip to content
Snippets Groups Projects
Commit 07f44d15 authored by Tom Fischer's avatar Tom Fischer
Browse files

[T/MeL] Comment unused var in TestAddLayerToMesh.

parent 5fe4648f
No related branches found
No related tags found
No related merge requests found
......@@ -44,7 +44,7 @@ struct IntervalGenerator
return _m * val + _n;
}
result_type operator()(std::size_t size = 0)
result_type operator()(std::size_t /*size*/ = 0)
{
return intervalMap(fix(1.0, generator)());
}
......@@ -61,7 +61,7 @@ struct IntervalTupleGenerator
using result_type = std::array<T, 3>;
result_type operator()(std::size_t size = 0)
result_type operator()(std::size_t /*size*/ = 0)
{
return {{ x_gen(), y_gen(), z_gen() }};
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment