/W4: Fix return value truncation warning

Fix value truncation warning caused by returning 'CServerNetworkProperty::m_edict' in 'CServerNetworkProperty::GetEdict'. type has been demoted to actual type 'edict_t'.
This commit is contained in:
Kawe Mazidjatari 2023-04-02 17:21:21 +02:00
parent 42b3e49840
commit 7727f13efa

View File

@ -14,8 +14,9 @@
#include "public/iservernetworkable.h"
#include "public/server_class.h"
#include "public/edict.h"
#include "game/shared/predictioncopy.h"
struct CServerNetworkProperty : IServerNetworkable
class CServerNetworkProperty : IServerNetworkable
{
public:
edict_t GetEdict() const;
@ -23,8 +24,9 @@ public:
private:
CBaseEntity* m_pOuter;
ServerClass* m_pServerClass;
int m_edict;
int m_hParent;
edict_t m_edict;
EHANDLE m_hParent;
};
static_assert(sizeof(CServerNetworkProperty) == 32);
#endif // SERVERNETWORKPROPERTY_H