| 3 | #include <cstring> |
| 4 | |
| 5 | PlayerUID::PlayerUID(int uid) { |
| 6 | memset(this, 0, sizeof(PlayerUID)); |
| 7 | } |
| 8 | bool PlayerUID::operator!=(const PlayerUID& other) const { |
| 9 | return !(*this == other); |
| 10 | } |
nothing calls this directly
no outgoing calls
no test coverage detected