| 61 | _ALWAYS_INLINE_ void operator=(uint64_t p_uint64) { id = p_uint64; } |
| 62 | |
| 63 | _ALWAYS_INLINE_ ObjectID() {} |
| 64 | _ALWAYS_INLINE_ explicit ObjectID(const uint64_t p_id) { id = p_id; } |
| 65 | _ALWAYS_INLINE_ explicit ObjectID(const int64_t p_id) { id = p_id; } |
| 66 | }; |
no outgoing calls
no test coverage detected