| 153 | } |
| 154 | |
| 155 | IndexedType removeConstModifier(const IndexedType& indexedType) |
| 156 | { |
| 157 | AbstractType::Ptr type = indexedType.abstractType(); |
| 158 | type->setModifiers(type->modifiers() & (~AbstractType::ConstModifier)); |
| 159 | return type->indexed(); |
| 160 | } |
| 161 | |
| 162 | AbstractType::Ptr shortenTypeForViewing(const AbstractType::Ptr& type) |
| 163 | { |
no test coverage detected