| 1452 | } |
| 1453 | |
| 1454 | const Library::Container* Library::detectContainerOrIterator(const Token* typeStart, bool* isIterator, bool withoutStd) const |
| 1455 | { |
| 1456 | bool res; |
| 1457 | const Library::Container* c = detectContainerInternal(typeStart, Both, &res, withoutStd); |
| 1458 | if (c && isIterator) |
| 1459 | *isIterator = res; |
| 1460 | return c; |
| 1461 | } |
| 1462 | |
| 1463 | bool Library::isContainerYield(const Token * const cond, Library::Container::Yield y, const std::string& fallback) |
| 1464 | { |
no outgoing calls