adds missing const

pull/25062/head
Matthias Möller 9 months ago
parent 5fbf3d85bf
commit e537e1650d
  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