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/debug_interface.h | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/common/debug_interface.h') diff --git a/src/common/debug_interface.h b/src/common/debug_interface.h index 49cc54a8..32f55cb5 100644 --- a/src/common/debug_interface.h +++ b/src/common/debug_interface.h @@ -1,8 +1,7 @@ -#ifndef _DEBUGINTERFACE_H -#define _DEBUGINTERFACE_H +#pragma once +#include #include -#include class DebugInterface { @@ -35,5 +34,3 @@ public: virtual int getColor(unsigned int /*address*/){return 0xFFFFFFFF;} virtual std::string getDescription(unsigned int /*address*/) = 0; }; - -#endif -- cgit v1.2.3