forked from mirror/openmw-tes3mp
Fix include guard
This commit is contained in:
parent
902e968fd9
commit
18026d4a50
5 changed files with 15 additions and 15 deletions
|
@ -2,8 +2,8 @@
|
|||
// Created by koncord on 23.01.16.
|
||||
//
|
||||
|
||||
#ifndef SOURCEPAWN_PLATFORM_HPP
|
||||
#define SOURCEPAWN_PLATFORM_HPP
|
||||
#ifndef PLATFORM_HPP
|
||||
#define PLATFORM_HPP
|
||||
|
||||
#if _MSC_VER
|
||||
#ifdef _M_X86
|
||||
|
@ -17,4 +17,4 @@
|
|||
#endif
|
||||
#endif
|
||||
|
||||
#endif //SOURCEPAWN_PLATFORM_HPP
|
||||
#endif //PLATFORM_HPP
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
// Created by koncord on 23.01.16.
|
||||
//
|
||||
|
||||
#ifndef SOURCEPAWN_SCRIPTFUNCTION_HPP
|
||||
#define SOURCEPAWN_SCRIPTFUNCTION_HPP
|
||||
#ifndef SCRIPTFUNCTION_HPP
|
||||
#define SCRIPTFUNCTION_HPP
|
||||
|
||||
#include <boost/any.hpp>
|
||||
#include <string>
|
||||
|
@ -69,4 +69,4 @@ protected:
|
|||
boost::any Call(const std::vector<boost::any> &args);
|
||||
};
|
||||
|
||||
#endif //SOURCEPAWN_SCRIPTFUNCTION_HPP
|
||||
#endif //SCRIPTFUNCTION_HPP
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
// Created by koncord on 24.01.16.
|
||||
//
|
||||
|
||||
#ifndef SOURCEPAWN_SCRIPTFUNCTIONS_HPP
|
||||
#define SOURCEPAWN_SCRIPTFUNCTIONS_HPP
|
||||
#ifndef SCRIPTFUNCTIONS_HPP
|
||||
#define SCRIPTFUNCTIONS_HPP
|
||||
|
||||
#include <Script/Functions/CharClass.hpp>
|
||||
#include <Script/Functions/Translocations.hpp>
|
||||
|
@ -114,4 +114,4 @@ public:
|
|||
};
|
||||
};
|
||||
|
||||
#endif //SOURCEPAWN_SCRIPTFUNCTIONS_HPP
|
||||
#endif //SCRIPTFUNCTIONS_HPP
|
|
@ -2,8 +2,8 @@
|
|||
// Created by koncord on 23.01.16.
|
||||
//
|
||||
|
||||
#ifndef SOURCEPAWN_TMPTYPES_HPP
|
||||
#define SOURCEPAWN_TMPTYPES_HPP
|
||||
#ifndef TMPTYPES_HPP
|
||||
#define TMPTYPES_HPP
|
||||
|
||||
|
||||
#include <cstddef>
|
||||
|
@ -108,4 +108,4 @@ struct ScriptCallbackData
|
|||
constexpr ScriptCallbackData(const char(&name)[N], ScriptIdentity _callback) : name(name), index(Utils::hash(name)), callback(_callback) {}
|
||||
};
|
||||
|
||||
#endif //SOURCEPAWN_TMPTYPES_HPP
|
||||
#endif //TMPTYPES_HPP
|
||||
|
|
|
@ -2,8 +2,8 @@
|
|||
// Created by koncord on 24.01.16.
|
||||
//
|
||||
|
||||
#ifndef SOURCEPAWN_UTILS_HPP
|
||||
#define SOURCEPAWN_UTILS_HPP
|
||||
#ifndef UTILS_HPP
|
||||
#define UTILS_HPP
|
||||
|
||||
#include <cstddef>
|
||||
#include <string>
|
||||
|
@ -74,4 +74,4 @@ namespace Utils
|
|||
F *from)
|
||||
{ return dynamic_cast<T *>(from); }
|
||||
}
|
||||
#endif //SOURCEPAWN_UTILS_HPP
|
||||
#endif //UTILS_HPP
|
||||
|
|
Loading…
Reference in a new issue