summaryrefslogtreecommitdiff
path: root/src/common/debug_interface.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2014-08-17 20:32:04 -0400
committerbunnei <bunneidev@gmail.com>2014-08-17 20:32:04 -0400
commitb26f25356d4463b5e4ccd36cf7365342d7306e7f (patch)
tree1cbe356089890c22e3f1e4084891f306d6e62d97 /src/common/debug_interface.h
parent7ed73af78fb1b8e736b7807633875b3fe05474e6 (diff)
parentda6f24b37470064f10e68186965949d728fecb3c (diff)
Merge pull request #51 from lioncash/pragma
Common: Move header guards over to pragma once.
Diffstat (limited to 'src/common/debug_interface.h')
-rw-r--r--src/common/debug_interface.h7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/common/debug_interface.h b/src/common/debug_interface.h
index 49cc54a80..32f55cb59 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 <cstring>
#include <string>
-#include <string.h>
class DebugInterface
{
@@ -35,5 +34,3 @@ public:
virtual int getColor(unsigned int /*address*/){return 0xFFFFFFFF;}
virtual std::string getDescription(unsigned int /*address*/) = 0;
};
-
-#endif