Chromium Code Reviews| Index: src/utils.h |
| diff --git a/src/utils.h b/src/utils.h |
| index ff4ab1e0a7383da19152dc4e2180a5141c0910a3..68e483d99e8669d5a5106a52606cbc0e459fb1bb 100644 |
| --- a/src/utils.h |
| +++ b/src/utils.h |
| @@ -1189,6 +1189,7 @@ class BailoutId { |
| bool IsNone() const { return id_ == kNoneId; } |
| bool operator==(const BailoutId& other) const { return id_ == other.id_; } |
| + bool operator!=(const BailoutId& other) const { return id_ != other.id_; } |
| private: |
| static const int kNoneId = -1; |