| 160 | } |
| 161 | |
| 162 | std::string Type::getASTTypeName() const { |
| 163 | std::string Ret = ASTTypeName; |
| 164 | |
| 165 | // Temporary Fix. |
| 166 | if (Ret == "std::vector::size_type") { |
| 167 | Ret = "size_t"; |
| 168 | } |
| 169 | return Ret; |
| 170 | } |
| 171 | |
| 172 | std::string Type::getNameSpace() const { return NameSpace; } |
| 173 |
no outgoing calls