1
0
Fork 0

Wrong overload of function push() got called when pushing a cEntity*. (#4512)

* Now having two funcs, Push(cEntity* ..) and Push(const cEntity* ...).
For now, the const function just casts away the const qualifier and
passes to the other.

Co-authored-by: mluchterhand <mluchterhand@max.de>
This commit is contained in:
Max Luchterhand 2020-03-21 17:00:26 +01:00 committed by GitHub
parent 0de2a32365
commit 4f60eaabca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 0 deletions

View File

@ -949,6 +949,16 @@ void cLuaState::Push(bool a_Value)
void cLuaState::Push(const cEntity * a_Entity)
{
// Once we can make Lua understand constness, this function shall receive a corresponding function body
Push(const_cast<cEntity * >(a_Entity));
}
void cLuaState::Push(cEntity * a_Entity)
{
ASSERT(IsValid());

View File

@ -624,6 +624,7 @@ public:
// Push a simple value onto the stack (keep alpha-sorted):
void Push(bool a_Value);
void Push(cEntity * a_Entity);
void Push(const cEntity * a_Entity);
void Push(cLuaServerHandle * a_ServerHandle);
void Push(cLuaTCPLink * a_TCPLink);
void Push(cLuaUDPEndpoint * a_UDPEndpoint);