Browse Source

Try make clang happy again

gravgun
mittorn 6 years ago
parent
commit
f40f69cb76
  1. 5
      dlls/whandle.h

5
dlls/whandle.h

@ -37,13 +37,16 @@ public: @@ -37,13 +37,16 @@ public:
Set(0);
return 0;
}
operator int ()
{
return Get() != NULL;
}
bool operator !=(EHBasePlayerItem &other)
{
return Get() != other.Get();
}
bool operator !=(my_nullptr_t &null)
{
return Get() != (edict_t*)0;

Loading…
Cancel
Save