Skip to content

Commit

Permalink
Try to enable the const copy constructor of MonitorObject to see if t…
Browse files Browse the repository at this point in the history
…hat's the root cause
  • Loading branch information
VeithMetro authored Nov 13, 2024
1 parent 5c2ebb7 commit b7605e5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Monitor/Monitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -490,8 +490,8 @@ namespace Plugin {
}
}

MonitorObject(MonitorObject&) = delete;
MonitorObject& operator=(MonitorObject&) = delete;
MonitorObject(MonitorObject&) = default;
MonitorObject& operator=(MonitorObject&);
MonitorObject(MonitorObject&&) = delete;
MonitorObject& operator=(MonitorObject&&) = delete;

Expand Down

0 comments on commit b7605e5

Please sign in to comment.