mirror of
https://github.com/opencv/opencv.git
synced 2026-07-29 07:13:02 +04:00
core: get rid of built-in String type
This commit is contained in:
committed by
Alexander Alekhin
parent
ee1e1ce377
commit
ae8dcdf40d
@@ -1953,7 +1953,9 @@ public:
|
||||
ippFeatures = cpuFeatures;
|
||||
|
||||
const char* pIppEnv = getenv("OPENCV_IPP");
|
||||
cv::String env = pIppEnv;
|
||||
cv::String env;
|
||||
if(pIppEnv != NULL)
|
||||
env = pIppEnv;
|
||||
if(env.size())
|
||||
{
|
||||
#if IPP_VERSION_X100 >= 201703
|
||||
|
||||
Reference in New Issue
Block a user