1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 23:33:05 +04:00

core: drop cv::errorNoReturn()

replaced to cv::error()
This commit is contained in:
Alexander Alekhin
2018-04-23 18:35:54 +03:00
parent cd2b188c9a
commit 4e83f4c579
8 changed files with 47 additions and 55 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ inline static bool checkError(const char* file, const int line, const char* func
default:
msg = "Unknown error";
};
cv::errorNoReturn(Error::OpenGlApiCallError, func, msg, file, line);
cv::error(Error::OpenGlApiCallError, func, msg, file, line);
}
return true;
}