| 6913 | } |
| 6914 | |
| 6915 | static void setAutoTokenProperties(Token * const autoTok) |
| 6916 | { |
| 6917 | const ValueType *valuetype = autoTok->valueType(); |
| 6918 | if (valuetype->isIntegral() || valuetype->isFloat()) |
| 6919 | autoTok->isStandardType(true); |
| 6920 | } |
| 6921 | |
| 6922 | static bool isContainerYieldElement(Library::Container::Yield yield) |
| 6923 | { |
no test coverage detected