Index: src/compiler/operator.h |
diff --git a/src/compiler/operator.h b/src/compiler/operator.h |
index 74b714b3d65e5d5aec001f860059497948ecf401..810851b626a02e0a9a3e5510d716bfff3a5f11cc 100644 |
--- a/src/compiler/operator.h |
+++ b/src/compiler/operator.h |
@@ -82,14 +82,6 @@ class Operator : public ZoneObject { |
return (properties() & property) == property; |
} |
- // Number of data inputs to the operator, for verifying graph structure. |
- // TODO(titzer): convert callers to ValueInputCount(); |
- int InputCount() const { return ValueInputCount(); } |
- |
- // Number of data outputs from the operator, for verifying graph structure. |
- // TODO(titzer): convert callers to ValueOutputCount(); |
- int OutputCount() const { return ValueOutputCount(); } |
- |
Properties properties() const { return properties_; } |
// TODO(titzer): convert return values here to size_t. |