summaryrefslogtreecommitdiff
path: root/src/common/eventfd.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/eventfd.h')
-rw-r--r--src/common/eventfd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common/eventfd.h b/src/common/eventfd.h
index f10945f..64681ab 100644
--- a/src/common/eventfd.h
+++ b/src/common/eventfd.h
@@ -31,8 +31,8 @@ public:
EventFD(unsigned int initval = 0, int flags = EFD_SEMAPHORE | EFD_CLOEXEC);
~EventFD();
- EventFD(const EventFD&) = delete;
- EventFD& operator=(const EventFD&) = delete;
+ EventFD(const EventFD &) = delete;
+ EventFD &operator=(const EventFD &) = delete;
void send();
void receive();