You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Components.destroy method takes size_t (and it looks like most of the storage classes use size_t), but the index of an Id is uint32_t. I'm compiling a 64bit executable, so I guess size_t is a uint64_t on my machine.
The text was updated successfully, but these errors were encountered:
I'm seeing this warning from the compile_time branch:
entityx\entityx/entityx.hh(240): warning C4267: 'argument': conversion from 'size_t' to 'uint32_t', possible loss of data
Because
The
Components.destroy
method takes size_t (and it looks like most of the storage classes use size_t), but the index of an Id isuint32_t
. I'm compiling a 64bit executable, so I guess size_t is a uint64_t on my machine.The text was updated successfully, but these errors were encountered: