summaryrefslogtreecommitdiff
path: root/src/common/fifo_queue.h
diff options
context:
space:
mode:
authorGravatar Lioncash2014-08-17 13:45:50 -0400
committerGravatar Lioncash2014-08-17 13:45:55 -0400
commit90e994471a385d2b965e3843e1f693ccba6fb699 (patch)
treeb5835e0b235225f8478f26814205337d26a5d91a /src/common/fifo_queue.h
parentMerge pull request #47 from archshift/stdstring (diff)
downloadyuzu-90e994471a385d2b965e3843e1f693ccba6fb699.tar.gz
yuzu-90e994471a385d2b965e3843e1f693ccba6fb699.tar.xz
yuzu-90e994471a385d2b965e3843e1f693ccba6fb699.zip
Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
Diffstat (limited to '')
-rw-r--r--src/common/fifo_queue.h6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/common/fifo_queue.h b/src/common/fifo_queue.h
index 4e80f53b4..78a8f561d 100644
--- a/src/common/fifo_queue.h
+++ b/src/common/fifo_queue.h
@@ -1,6 +1,4 @@
1 1#pragma once
2#ifndef _FIFO_QUEUE_H_
3#define _FIFO_QUEUE_H_
4 2
5// a simple lockless thread-safe, 3// a simple lockless thread-safe,
6// single reader, single writer queue 4// single reader, single writer queue
@@ -111,5 +109,3 @@ private:
111}; 109};
112 110
113} 111}
114
115#endif