| 8225 | } |
| 8226 | |
| 8227 | ValueType ValueType::parseDecl(const Token *type, const Settings &settings) |
| 8228 | { |
| 8229 | ValueType vt; |
| 8230 | parsedecl(type, &vt, settings.platform.defaultSign == 'u' ? Sign::UNSIGNED : Sign::SIGNED, settings); |
| 8231 | return vt; |
| 8232 | } |
| 8233 | |
| 8234 | ValueType::Type ValueType::typeFromString(const std::string &typestr, bool longType) |
| 8235 | { |
nothing calls this directly
no test coverage detected