| 136 | int mLine; |
| 137 | |
| 138 | bool operator==(const SubcaseSignature& other) const FL_NOEXCEPT { |
| 139 | return mLine == other.mLine && |
| 140 | fl::strcmp(mFile, other.mFile) == 0 && |
| 141 | fl::strcmp(mName, other.mName) == 0; |
| 142 | } |
| 143 | |
| 144 | bool operator!=(const SubcaseSignature& other) const FL_NOEXCEPT { |
| 145 | return !(*this == other); |