Index: src/utils.h |
diff --git a/src/utils.h b/src/utils.h |
index da5d0fcab88587b2f2437948b5929efba8480b10..c9794e1d86f8d10440aa2b3daa78d6c6587d66c9 100644 |
--- a/src/utils.h |
+++ b/src/utils.h |
@@ -1094,6 +1094,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_; } |
+ bool operator<(const BailoutId& other) const { return id_ < other.id_; } |
private: |
static const int kNoneId = -1; |