From 90e994471a385d2b965e3843e1f693ccba6fb699 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sun, 17 Aug 2014 13:45:50 -0400 Subject: Common: Move header guards over to pragma once Also replaced C headers with the C++ equivalent ones --- src/common/fifo_queue.h | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'src/common/fifo_queue.h') diff --git a/src/common/fifo_queue.h b/src/common/fifo_queue.h index 4e80f53b..78a8f561 100644 --- a/src/common/fifo_queue.h +++ b/src/common/fifo_queue.h @@ -1,6 +1,4 @@ - -#ifndef _FIFO_QUEUE_H_ -#define _FIFO_QUEUE_H_ +#pragma once // a simple lockless thread-safe, // single reader, single writer queue @@ -111,5 +109,3 @@ private: }; } - -#endif -- cgit v1.2.3