| 1062 | |
| 1063 | |
| 1064 | bool TagReference::EqualsByData(const TagReference& other) const |
| 1065 | { |
| 1066 | if (refType != other.refType) |
| 1067 | return false; |
| 1068 | if (autoDefined != other.autoDefined) |
| 1069 | return false; |
| 1070 | if (addr != other.addr) |
| 1071 | return false; |
| 1072 | if (func != other.func) |
| 1073 | return false; |
| 1074 | if (arch != other.arch) |
| 1075 | return false; |
| 1076 | if (tag->GetData() != other.tag->GetData()) |
| 1077 | return false; |
| 1078 | return true; |
| 1079 | } |
| 1080 | |
| 1081 | |
| 1082 | bool TagReference::operator==(const TagReference& other) const |