Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
This commit is contained in:
parent
d1c2b76ad1
commit
90e994471a
33 changed files with 41 additions and 146 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue