Skip to content

Commit

Permalink
Add back VideoProperty handle member initializer
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala committed Oct 23, 2024
1 parent ac907f7 commit 5ac7a67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cscore/src/main/native/include/cscore_oo.h
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ class VideoProperty {
CS_Status GetLastStatus() const { return m_status; }

private:
explicit VideoProperty(CS_Property handle) {
explicit VideoProperty(CS_Property handle) : m_handle(handle) {
m_status = 0;
if (handle == 0) {
m_kind = kNone;
Expand Down

0 comments on commit 5ac7a67

Please sign in to comment.