diff options
| author | Shauren <shauren.trinity@gmail.com> | 2014-09-14 16:54:21 +0200 |
|---|---|---|
| committer | Shauren <shauren.trinity@gmail.com> | 2014-09-14 16:54:21 +0200 |
| commit | 2a1a2943838d04c6987fcdd68c5e6362798452fe (patch) | |
| tree | eb9a3f3de7de07569eebaf36d872772ebf1d47ec /src/server/game | |
| parent | a0e50ea35fca61447bf07fc45d93c98234ba59f7 (diff) | |
Scripts/Commands: Fixed build with -DSCRIPTS=0
Diffstat (limited to 'src/server/game')
| -rw-r--r-- | src/server/game/Entities/Object/ObjectGuid.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/server/game/Entities/Object/ObjectGuid.h b/src/server/game/Entities/Object/ObjectGuid.h index f1966007d74..ff356a621f3 100644 --- a/src/server/game/Entities/Object/ObjectGuid.h +++ b/src/server/game/Entities/Object/ObjectGuid.h @@ -156,7 +156,7 @@ class ObjectGuid TypeID GetTypeId() const { return GetTypeId(GetHigh()); } - //bool operator!() const { return IsEmpty(); } + bool operator!() const { return IsEmpty(); } bool operator== (ObjectGuid const& guid) const { return GetRawValue() == guid.GetRawValue(); } bool operator!= (ObjectGuid const& guid) const { return GetRawValue() != guid.GetRawValue(); } bool operator< (ObjectGuid const& guid) const { return GetRawValue() < guid.GetRawValue(); } |
