Commit c67613e0 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #11419 from alalek:msvs2017_build_warning

parents 4934f7c5 65b0b319
......@@ -205,7 +205,9 @@ public:
if (_explicitSizes)
{
CV_Assert(_aspectRatios.empty(), !params.has("min_size"), !params.has("max_size"));
CV_Assert(_aspectRatios.empty());
CV_Assert(!params.has("min_size"));
CV_Assert(!params.has("max_size"));
_boxWidths = widths;
_boxHeights = heights;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment