Index: src/compiler/graph.h |
diff --git a/src/compiler/graph.h b/src/compiler/graph.h |
index bc648d61d621beb8369896ffb63f5c224dd33ab5..65ea3b30a42c4a1dc286832f55ea86003cd2f41e 100644 |
--- a/src/compiler/graph.h |
+++ b/src/compiler/graph.h |
@@ -74,7 +74,7 @@ class Graph : public GenericGraph<Node> { |
void RemoveDecorator(GraphDecorator* decorator) { |
DecoratorVector::iterator it = |
std::find(decorators_.begin(), decorators_.end(), decorator); |
- ASSERT(it != decorators_.end()); |
+ DCHECK(it != decorators_.end()); |
decorators_.erase(it, it + 1); |
} |