Skip to content

Commit adef54f

Browse files
committed
Comment out unused declaration
1 parent 18e95dd commit adef54f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

locks/ticket_futex_lock.hpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
class ticket_futex_lock {
2121
using field_t = int;
2222
std::atomic<field_t> ticket;
23-
char pad[128-sizeof(ticket)];
23+
// char pad[128-sizeof(ticket)]; // UNUSED - DELETE ?
2424
std::atomic<field_t> serving;
2525
public:
2626
ticket_futex_lock() : ticket(0), serving(0) {}

0 commit comments

Comments
 (0)