| Index: src/types.h
|
| diff --git a/src/types.h b/src/types.h
|
| index 2699845c4450768cd5978523bf9b068764cb09a1..84fbe38776aa29cd94d60aef3e6066b2e02150de 100644
|
| --- a/src/types.h
|
| +++ b/src/types.h
|
| @@ -431,12 +431,6 @@ class TypeImpl : public Config::Base {
|
|
|
| static TypeHandle Union(TypeHandle type1, TypeHandle type2, Region* reg);
|
| static TypeHandle Intersect(TypeHandle type1, TypeHandle type2, Region* reg);
|
| - static TypeImpl* Union(TypeImpl* type1, TypeImpl* type2) {
|
| - return BitsetType::New(type1->AsBitset() | type2->AsBitset());
|
| - }
|
| - static TypeImpl* Intersect(TypeImpl* type1, TypeImpl* type2) {
|
| - return BitsetType::New(type1->AsBitset() & type2->AsBitset());
|
| - }
|
|
|
| static TypeHandle Of(double value, Region* region) {
|
| return Config::from_bitset(BitsetType::Lub(value), region);
|
|
|