1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

Merge pull request #25062 from TinyTinni:missing-const

Adds missing const in function declaration of VideoCapture
This commit is contained in:
Alexander Smorkalov
2024-02-22 10:23:24 +03:00
committed by GitHub
+1 -1
View File
@@ -960,7 +960,7 @@ public:
CV_WRAP void setExceptionMode(bool enable) { throwOnFail = enable; }
/// query if exception mode is active
CV_WRAP bool getExceptionMode() { return throwOnFail; }
CV_WRAP bool getExceptionMode() const { return throwOnFail; }
/** @brief Wait for ready frames from VideoCapture.