Skip to content

Commit

Permalink
Removing the proper copy and assignemtn operators with const instead
Browse files Browse the repository at this point in the history
  • Loading branch information
VeithMetro authored Nov 13, 2024
1 parent 4bf3342 commit 4f0168e
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(const MonitorObject&) = delete;
MonitorObject& operator=(const MonitorObject&) = delete;
MonitorObject(MonitorObject&&) = delete;
MonitorObject& operator=(MonitorObject&&) = delete;

Expand Down

0 comments on commit 4f0168e

Please sign in to comment.