We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18e95dd commit adef54fCopy full SHA for adef54f
locks/ticket_futex_lock.hpp
@@ -20,7 +20,7 @@
20
class ticket_futex_lock {
21
using field_t = int;
22
std::atomic<field_t> ticket;
23
- char pad[128-sizeof(ticket)];
+ // char pad[128-sizeof(ticket)]; // UNUSED - DELETE ?
24
std::atomic<field_t> serving;
25
public:
26
ticket_futex_lock() : ticket(0), serving(0) {}
0 commit comments