* @brief Checks if diff in given list index is significant or not. * @param [in] nDiff Index of DIFFRANGE to check. * @return true if diff is significant, false if not. */
| 123 | * @return true if diff is significant, false if not. |
| 124 | */ |
| 125 | bool DiffList::IsDiffSignificant(int nDiff) const |
| 126 | { |
| 127 | const DIFFRANGE * dfi = DiffRangeAt(nDiff); |
| 128 | if (dfi->op != OP_TRIVIAL) |
| 129 | return true; |
| 130 | else |
| 131 | return false; |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | * @brief Get significant difference index of the diff. |
no outgoing calls
no test coverage detected