mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-02 23:40:26 +00:00
normalize includes: zone
This commit is contained in:
+6
-4
@@ -1,7 +1,10 @@
|
||||
#ifndef EQEMU_LUA_PTR_H
|
||||
#define EQEMU_LUA_PTR_H
|
||||
#pragma once
|
||||
|
||||
#ifdef LUA_EQEMU
|
||||
|
||||
#include "lua.hpp"
|
||||
#include "luabind/luabind.hpp"
|
||||
|
||||
#ifndef EQEMU_UNSAFE_LUA
|
||||
#define Lua_Safe_Call_Void() if(!d_) { return; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
||||
#define Lua_Safe_Call_Bool() if(!d_) { return false; } NativeType *self = reinterpret_cast<NativeType*>(d_)
|
||||
@@ -51,5 +54,4 @@ protected:
|
||||
T *d_;
|
||||
};
|
||||
|
||||
#endif
|
||||
#endif
|
||||
#endif // LUA_EQEMU
|
||||
|
||||
Reference in New Issue
Block a user