diff options
| author | 2014-08-17 20:32:04 -0400 | |
|---|---|---|
| committer | 2014-08-17 20:32:04 -0400 | |
| commit | b26f25356d4463b5e4ccd36cf7365342d7306e7f (patch) | |
| tree | 1cbe356089890c22e3f1e4084891f306d6e62d97 /src/common/debug_interface.h | |
| parent | Merge pull request #53 from lioncash/memmap (diff) | |
| parent | Common: Move remaining C header includes over to their C++ equivalent (diff) | |
| download | yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.tar.gz yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.tar.xz yuzu-b26f25356d4463b5e4ccd36cf7365342d7306e7f.zip | |
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.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 | ||