You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
security_barrier_camera_demo: make InferRequestsContainer uncopyable
Cppcheck complains about a violation of the rule of three. I could add
a real copy constructor; however, the assignment operator isn't really
needed either, so instead I deleted them both and implemented an `assign`
method, which is all the class really needs.
This makes the non-default constructor unnecessary, so I removed it too.
0 commit comments