Skip to content

Commit

Permalink
[cscore] Add back VideoProperty handle member initializer (wpilibsuit…
Browse files Browse the repository at this point in the history
  • Loading branch information
KangarooKoala authored Oct 24, 2024
1 parent db55231 commit 9a5f73d
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 9a5f73d

Please sign in to comment.