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:
@@ -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.
|
||||
|
||||
Reference in New Issue
Block a user