| 408 | } |
| 409 | |
| 410 | static void makeBaseTypeString(std::string& typeStr) |
| 411 | { |
| 412 | const auto pos = typeStr.find("signed"); |
| 413 | if (pos != std::string::npos) |
| 414 | typeStr.erase(typeStr.begin(), typeStr.begin() + pos + 6 + 1); |
| 415 | } |
| 416 | |
| 417 | void CheckTypeImpl::longCastAssignError(const Token *tok, const ValueType* src, const ValueType* tgt) |
| 418 | { |
no test coverage detected