summaryrefslogtreecommitdiff
path: root/src/common/debug_interface.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/debug_interface.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 '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 @@
1#ifndef _DEBUGINTERFACE_H 1#pragma once
2#define _DEBUGINTERFACE_H
3 2
3#include <cstring>
4#include <string> 4#include <string>
5#include <string.h>
6 5
7class DebugInterface 6class DebugInterface
8{ 7{
@@ -35,5 +34,3 @@ public:
35 virtual int getColor(unsigned int /*address*/){return 0xFFFFFFFF;} 34 virtual int getColor(unsigned int /*address*/){return 0xFFFFFFFF;}
36 virtual std::string getDescription(unsigned int /*address*/) = 0; 35 virtual std::string getDescription(unsigned int /*address*/) = 0;
37}; 36};
38
39#endif