adds missing const

This commit is contained in:
Matthias Möller 2024-02-21 12:31:07 +01:00
parent 5fbf3d85bf
commit e537e1650d

View File

@ -960,7 +960,7 @@ public:
CV_WRAP void setExceptionMode(bool enable) { throwOnFail = enable; } CV_WRAP void setExceptionMode(bool enable) { throwOnFail = enable; }
/// query if exception mode is active /// 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. /** @brief Wait for ready frames from VideoCapture.