mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-08-09 20:24:16 +00:00
make include guards standards conforming
fix compile issues
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
#ifndef __BRICKDATABASE__H__
|
||||
#define __BRICKDATABASE__H__
|
||||
#ifndef BRICKDATABASE_H
|
||||
#define BRICKDATABASE_H
|
||||
|
||||
#pragma once
|
||||
|
||||
@@ -13,4 +13,4 @@ namespace BrickDatabase {
|
||||
const BrickList& GetBricks(const LxfmlPath& lxfmlPath);
|
||||
};
|
||||
|
||||
#endif //!__BRICKDATABASE__H__
|
||||
#endif //!BRICKDATABASE_H
|
||||
|
@@ -1,5 +1,5 @@
|
||||
#ifndef __CHEATDETECTION__H__
|
||||
#define __CHEATDETECTION__H__
|
||||
#ifndef CHEATDETECTION_H
|
||||
#define CHEATDETECTION_H
|
||||
|
||||
#include "dCommonVars.h"
|
||||
|
||||
@@ -26,5 +26,5 @@ namespace CheatDetection {
|
||||
void ReportCheat(User* user, const SystemAddress& sysAddr, const char* messageIfNotSender, ...);
|
||||
};
|
||||
|
||||
#endif //!__CHEATDETECTION__H__
|
||||
#endif //!CHEATDETECTION_H
|
||||
|
||||
|
Reference in New Issue
Block a user