Browse Source

Clang, ur mom is ambiguous

gravgun
mittorn 6 years ago
parent
commit
b498e9170c
  1. 10
      dlls/whandle.h

10
dlls/whandle.h

@ -37,20 +37,20 @@ public:
Set(0); Set(0);
return 0; return 0;
} }
operator int ()
{
return Get() != NULL;
}
bool operator !=(EHBasePlayerItem &other) bool operator !=(EHBasePlayerItem &other)
{ {
return Get() != other.Get(); return Get() != other.Get();
} }
bool operator !=(my_nullptr_t &null) bool operator !=(my_nullptr_t &null1)
{ {
return Get() != (edict_t*)0; return Get() != (edict_t*)0;
} }
bool operator !=(int null1)
{
return Get() != (edict_t*)null1;
}
}; };
#else #else
#define EHBasePlayerItem CBasePlayerItem* #define EHBasePlayerItem CBasePlayerItem*

Loading…
Cancel
Save