summaryrefslogtreecommitdiffstats
path: root/src/common/thread_queue_list.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-08-12 18:47:11 +0200
committerLioncash <mathew1800@gmail.com>2018-08-12 18:47:11 +0200
commit55c73e10a72651c768285caf914b23a1ed486f04 (patch)
tree368f9b6f4f3cf045dee6f04540030a27fcbdc2b4 /src/common/thread_queue_list.h
parentMerge pull request #1029 from bunnei/fix-out-attrib (diff)
downloadyuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar.gz
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar.bz2
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar.lz
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar.xz
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.tar.zst
yuzu-55c73e10a72651c768285caf914b23a1ed486f04.zip
Diffstat (limited to '')
-rw-r--r--src/common/thread_queue_list.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/thread_queue_list.h b/src/common/thread_queue_list.h
index 38a450d69..258c5f17a 100644
--- a/src/common/thread_queue_list.h
+++ b/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;