Browse Source

thread_queue_list: Convert typedef to a type alias

nce_cpp
Lioncash 7 years ago
parent
commit
9a76374859
  1. 2
      src/common/thread_queue_list.h

2
src/common/thread_queue_list.h

@ -16,7 +16,7 @@ struct ThreadQueueList {
// (dynamically resizable) circular buffers to remove their overhead when
// inserting and popping.
typedef unsigned int Priority;
using Priority = unsigned int;
// Number of priority levels. (Valid levels are [0..NUM_QUEUES).)
static const Priority NUM_QUEUES = N;

Loading…
Cancel
Save