mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-15 22:57:57 -05:00
Common: Move header guards over to pragma once
Also replaced C headers with the C++ equivalent ones
This commit is contained in:
@ -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
|
||||
|
Reference in New Issue
Block a user