Merge pull request #25062 from TinyTinni:missing-const

Adds missing const in function declaration of VideoCapture
pull/23334/merge
Alexander Smorkalov 9 months ago committed by GitHub
commit 296a90ae01
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      modules/videoio/include/opencv2/videoio.hpp

@ -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.

Loading…
Cancel
Save