| 2011 | } |
| 2012 | |
| 2013 | static bool isc_strConstructor(const Token* tok) |
| 2014 | { |
| 2015 | if (!tok->valueType() || !Token::Match(tok, "%var% (|{")) |
| 2016 | return false; |
| 2017 | return isc_strInPlusChain(tok->tokAt(1)->astOperand2(), tok->valueType()->container); |
| 2018 | } |
| 2019 | |
| 2020 | namespace { |
| 2021 | const std::set<std::string> stl_string_stream = { |
no test coverage detected