Silence unused parameter warning

This commit is contained in:
Christoph Hertzberg 2018-08-17 16:28:28 +02:00
parent 461620668c
commit ab95a8c1ef

View File

@ -35,6 +35,7 @@ struct get_boxes_helper {
{ {
outBoxes.insert(outBoxes.end(), boxBegin, boxEnd); outBoxes.insert(outBoxes.end(), boxBegin, boxEnd);
eigen_assert(outBoxes.size() == objects.size()); eigen_assert(outBoxes.size() == objects.size());
EIGEN_ONLY_USED_FOR_DEBUG(objects);
} }
}; };