Utility function returning whether iToTest equals iTypename or iOptionalPrefix+iTypename
| 549 | |
| 550 | // Utility function returning whether iToTest equals iTypename or iOptionalPrefix+iTypename |
| 551 | static inline bool typesMatch(const std::string& iToTest, const std::string& iTypename, const std::string& iOptionalPrefix = "std::") |
| 552 | { |
| 553 | return (iToTest == iTypename) || (iToTest == iOptionalPrefix + iTypename); |
| 554 | } |
| 555 | |
| 556 | void CheckIOImpl::checkWrongPrintfScanfArguments() |
| 557 | { |