diff options
| author | 2014-08-17 13:45:50 -0400 | |
|---|---|---|
| committer | 2014-08-17 13:45:55 -0400 | |
| commit | 90e994471a385d2b965e3843e1f693ccba6fb699 (patch) | |
| tree | b5835e0b235225f8478f26814205337d26a5d91a /src/common/debug_interface.h | |
| parent | Merge pull request #47 from archshift/stdstring (diff) | |
| download | yuzu-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.h | 7 |
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 | ||
| 7 | class DebugInterface | 6 | class 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 | ||