[wpilibc] Explicitly mark EventLoop as non-copyable/non-movable (#4579)

It's already not movable because m_bindings isn't copyable, but pybind11
isn't able to detect that
This commit is contained in:
Dustin Spicuzza
2022-11-07 12:30:03 -05:00
committed by GitHub
parent 9d1ce6a6d9
commit 0190301e09

View File

@@ -16,6 +16,9 @@ class EventLoop {
public:
EventLoop();
EventLoop(const EventLoop&) = delete;
EventLoop& operator=(const EventLoop&) = delete;
/**
* Bind a new action to run whenever the condition is true.
*