mirror of
https://github.com/yuzu-emu/yuzu.git
synced 2025-06-18 11: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:
@ -2,16 +2,15 @@
|
||||
// Licensed under GPLv2
|
||||
// Refer to the license.txt file included.
|
||||
|
||||
#ifndef _LOGMANAGER_H_
|
||||
#define _LOGMANAGER_H_
|
||||
#pragma once
|
||||
|
||||
#include "common/log.h"
|
||||
#include "common/string_util.h"
|
||||
#include "common/thread.h"
|
||||
#include "common/file_util.h"
|
||||
|
||||
#include <cstring>
|
||||
#include <set>
|
||||
#include <string.h>
|
||||
|
||||
#define MAX_MESSAGES 8000
|
||||
#define MAX_MSGLEN 1024
|
||||
@ -165,5 +164,3 @@ public:
|
||||
static void Init();
|
||||
static void Shutdown();
|
||||
};
|
||||
|
||||
#endif // _LOGMANAGER_H_
|
||||
|
Reference in New Issue
Block a user