Commit cc5a6f3b authored by Alexander Alekhin's avatar Alexander Alekhin

core: remove '-' from separators list of disabled CPU flags

To allow runtime disabling of AVX512-SKX via 'OPENCV_CPU_DISABLE' parameter
parent aa7a9641
......@@ -514,7 +514,7 @@ struct HWFeatures
static inline bool isSymbolSeparator(char c)
{
return c == ',' || c == ';' || c == '-';
return c == ',' || c == ';';
}
void readSettings(const int* baseline_features, int baseline_count)
......
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