Index: src/types.h |
diff --git a/src/types.h b/src/types.h |
index 66f209c12b7c09ec0af209dfabe3e9b827bfe21f..2699845c4450768cd5978523bf9b068764cb09a1 100644 |
--- a/src/types.h |
+++ b/src/types.h |
@@ -1134,8 +1134,8 @@ struct BoundsImpl { |
} |
// Unrestricted bounds. |
- static BoundsImpl Unbounded(Region* region) { |
- return BoundsImpl(Type::None(region), Type::Any(region)); |
+ static BoundsImpl Unbounded() { |
+ return BoundsImpl(Type::None(), Type::Any()); |
} |
// Meet: both b1 and b2 are known to hold. |