| 49 | static const CWE CWE561(561U); // Dead Code |
| 50 | |
| 51 | static std::string stripTemplateParameters(const std::string& funcName) { |
| 52 | std::string name = funcName; |
| 53 | const auto pos = name.find('<'); |
| 54 | if (pos > 0 && pos != std::string::npos) |
| 55 | name.erase(pos - 1); |
| 56 | return name; |
| 57 | } |
| 58 | |
| 59 | //--------------------------------------------------------------------------- |
| 60 | // FUNCTION USAGE - Check for unused functions etc |
no test coverage detected